Created
April 1, 2015 15:37
-
-
Save yoavram/d2233b1f0492fb9f60ee to your computer and use it in GitHub Desktop.
Starting Wooey (https://github.com/mfitzp/Wooey). You'll need Python, virtualenv, Foreman, git
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git clone git@github.com:mfitzp/Wooey.git | |
| cd Wooey | |
| virtualenv venv | |
| venv\Scripts\activate | |
| pip install requirements.txt | |
| pip install --upgrade pip | |
| pip install -r requirements.txt | |
| echo WOOEY_ENV=prod > .env | |
| echo python manage.py server > Procfile | |
| python manage.py db init | |
| python manage.py db migrate | |
| python manage.py db upgrade | |
| pip install requests | |
| pip install numpy # or try to first download from http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy and pip install the downloaded file | |
| pip install scipy # or try to first download from http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy and pip install the downloaded file | |
| pip install matplotlib | |
| python manage.py build_scripts | |
| python manage.py find_scripts | |
| foreman start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment