Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

Already on GitHub? Sign in to your account

Bring Your Own Resources #205

Merged
merged 23 commits into from Jun 30, 2017
Jump to file or symbol
Failed to load files and symbols.
+4 −0
Split
Viewing a subset of changes. View all

fix BYOR config

commit 92835dba646da6e4f9722b34c4e3805299285da3 @StrausMG StrausMG committed Jun 24, 2017
View
@@ -3,3 +3,7 @@
load_subconfig('etc/github_auth.py')
c.JupyterHub.spawner_class = 'everware.ByorDockerSpawner'
+
+from os.path import join as pjoin
+with open(pjoin(c.JupyterHub.template_paths[0], '_byor_options_form.html')) as form:
+ c.CustomDockerSpawner.options_form = form.read()