commands. Every time we add a new notebook to ipython_notebooks dir we have to remember to add another line to ipynb_setup.sh, which is potentially error prone. We can't just download the whole directory, because other files live there as well.
What is even worse, we make changes to notebooks very often. After each change we have to download a notebook, place it somehow to our git repo and commit. Then we have to run curl -o part of ipynb_setup.sh to sync it with our live VM....
We should just have a separate github repo and inside our VM we should clone this repo and configure ipython server to serve it's notebooks directly from this directory.
Currently https://github.com/chembl/mychembl/blob/master/ipynb_setup.sh contains bunch of
commands. Every time we add a new notebook to
ipython_notebooks
dir we have to remember to add another line toipynb_setup.sh
, which is potentially error prone. We can't just download the whole directory, because other files live there as well.What is even worse, we make changes to notebooks very often. After each change we have to download a notebook, place it somehow to our git repo and commit. Then we have to run
curl -o
part ofipynb_setup.sh
to sync it with our live VM....We should just have a separate github repo and inside our VM we should clone this repo and configure ipython server to serve it's notebooks directly from this directory.