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 Side-by-side Diff

1   -Set up the environment with:
2   -
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
9   -
  1 +Set up the environment by running setup.sh
10 2 gevent installation may take a long time and display warnings; these may be ignored.
  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