Commit ea01a528d7a033cee2119e153d67fc23e93ae26c

Authored by Shrikant Sharat
1 parent e4e517f671

Add a .env file to autoload the virtualenv.

Showing 1 changed file with 7 additions and 0 deletions Inline Diff

File was created 1 #!/bin/bash
2
3 if lsvirtualenv -b | grep -qm1 '^antigen$'; then
4 workon antigen
5 else
6 mkvirtualenv -r requirements.txt --distribute antigen
7 fi
8