Add base conda constructor files

This commit is contained in:
yuvipanda
2018-06-26 18:37:57 -07:00
parent 5f4aed5b4b
commit 8a2b6f608c
2 changed files with 22 additions and 0 deletions

12
installer/construct.yaml Normal file
View File

@@ -0,0 +1,12 @@
name: TheLittlestJupyterHub
version: 0.1
channels:
- http://repo.continuum.io/pkgs/free/
- https://conda.anaconda.org/conda-forge
specs:
- python 3.6
- conda
post_install: post-install.bash

10
installer/post-install.bash Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/bash
set -euo pipefail
# Run by the installer after the hub environment has been set up.
export PATH=${PREFIX}/bin:$PATH
pip install --no-cache-dir -e /home/yuvipanda/code/littlest-jupyterhub
python3 -m tljh.installer