Added comments on the jekyll build and serve commands. Added Jekyll to list of IPython Notebooks.

This commit is contained in:
Donne Martin 2015-02-28 09:15:38 -05:00
parent 06b1d3bf2a
commit fb1768f39e
2 changed files with 6 additions and 1 deletions

View File

@ -40,6 +40,7 @@ IPython Notebooks demonstrating pandas functionality.
IPython Notebooks demonstrating various command lines for AWS, Unix, etc. IPython Notebooks demonstrating various command lines for AWS, Unix, etc.
* [aws commands](http://nbviewer.ipython.org/github/donnemartin/ipython-data-notebooks/blob/master/commands/aws.ipynb) * [aws commands](http://nbviewer.ipython.org/github/donnemartin/ipython-data-notebooks/blob/master/commands/aws.ipynb)
* [jekyll commands](http://nbviewer.ipython.org/github/donnemartin/ipython-data-notebooks/blob/master/commands/jekyll.ipynb)
## References ## References

View File

@ -1,7 +1,7 @@
{ {
"metadata": { "metadata": {
"name": "", "name": "",
"signature": "sha256:435af6ed0f45ee8e7981d6153b8257fea87f3b76370a481bc1ae324c7e28815d" "signature": "sha256:7c84e32a632b567f8244ff002bd56149062ba3002870c07b0399e389f30ca2f9"
}, },
"nbformat": 3, "nbformat": 3,
"nbformat_minor": 0, "nbformat_minor": 0,
@ -52,7 +52,11 @@
"cell_type": "code", "cell_type": "code",
"collapsed": false, "collapsed": false,
"input": [ "input": [
"# => The current folder will be generated into ./_site\n",
"bundle exec jekyll build\n", "bundle exec jekyll build\n",
"\n",
"# => A development server will run at http://localhost:4000/\n",
"# Auto-regeneration: enabled. Use `--no-watch` to disable.\n",
"bundle exec jekyll serve" "bundle exec jekyll serve"
], ],
"language": "python", "language": "python",