Replies: 2 comments
-
This sounds like a great addition! I personally don't use this feature but I might have at least a look at it this way 🧐 |
Beta Was this translation helpful? Give feedback.
0 replies
-
For those of you who are interested in an easy solution to autostart the Jupyter server during development, add the following line to backend/app/prestart.sh: # autostart jupyter if JUPYTER env var is set and not empty
if [ ! -z "${JUPYTER-}" ]; then $JUPYTER & fi Provided that you left the JUPYTER env var inside docker-compose.override.yml unchanged from the template, you can find (and click) the Jupyter URL inside the backend logs via |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone, and thank you for this amazing project!
Since I am always using Jupyter during development, I found it a bit cumbersome to create a bash session into the backend microservice, run the $JUPYTER command, and copy paste the url+token to my browser.
For this reason I have added some minor changes to the template so that Jupyter starts automatically if a RUN_JUPYTER variable is set to "true" (my default). I have also added a new traefik routing rule so that Jupyter can be reached at http://localhost/jup for convenience.
Just wanted to know if others would be interested in this code change so I can create a PR.
Beta Was this translation helpful? Give feedback.
All reactions