Skip to content

Latest commit

 

History

History
35 lines (19 loc) · 610 Bytes

README.md

File metadata and controls

35 lines (19 loc) · 610 Bytes

flaskmap

based off of these two tutorials: http://jonathansoma.com/tutorials/webapps/intro-to-flask/

https://medium.com/@prabhath_kiran/simple-rest-api-using-flask-and-peewee-3d75c7bff515

peewee docs:

http://docs.peewee-orm.com/en/latest/peewee/quickstart.html#model-definition

step one

pip install virtualenv

pip install virtualenvwrapper (for Linux/Macs) pip install virtualenvwrapper-win (for windows)

mkvirtualenv flaskmap

workon flaskmap

pip install flask

pip install peewee

pip install psycopg2

create database

create templates

establish API

migrate to production server