Commit f95e67a6a2af14e80ee5b9056cb9596d0a24176b

Authored by Andrew Buss
1 parent 55c1546aad
Exists in master

Moved setup stuff to a separate script

Showing 2 changed files with 9 additions and 9 deletions Inline Diff

Set up the environment with: 1 1 Set up the environment by running setup.sh
2
virtualenv venv 3
source venv/bin/activate 4
pip install -r requirements.txt 5
git submodule init 6
git submodule update 7
pip install -e django 8
9
File was created 1 #!/bin/bash -x
2 set -euo pipefail
3 virtualenv venv
4 source venv/bin/activate
5 pip install -r requirements.txt
6 git submodule init
7 git submodule update
8 pip install -e django