Check out the blog post.
Install Python3
- Classical install
http://docs.python-guide.org/en/latest/starting/install3/osx/
- With Anaconda (Recommended)
https://conda.io/docs/user-guide/install/macos.html
- Flask
http://flask.pocoo.org/
- SQLite for python
https://docs.python.org/3/library/sqlite3.html
-
Fork/Clone
-
Create and active a anacoda env(optional):
conda-env create -n kata-python -f requirements.txt
-
Or just install dependencies:
(kata-python) $ pip install -r requirements.txt
-
Run the server:
source activate kata-python (kata-python) $ python app.py