Created
July 23, 2015 10:12
-
-
Save pkpinto/f1724e7d18340d6bfb30 to your computer and use it in GitHub Desktop.
upstart conf file to start iPython Notebook on boot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
description "IPython Notebook" | |
start on runlevel [2345] | |
stop on runlevel [016] | |
respawn limit 10 5 | |
setuid pdasi_01 | |
chdir /local/home/pdasi_01/Projects | |
script | |
exec ipython notebook --profile=nbserver --ipython-dir=/local/home/pdasi_01/.ipython | |
end script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment