mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2025-01-09 22:40:02 +01:00
8 lines
141 B
Bash
8 lines
141 B
Bash
|
#!/usr/bin/env sh
|
||
|
# Sets up flask development environment and activates it
|
||
|
|
||
|
virtualenv .
|
||
|
|
||
|
bin/python setup.py develop
|
||
|
bin/python clipperz.py
|