An open API service indexing awesome lists of open source software.

https://github.com/bonnie/python_fullstack_demo


https://github.com/bonnie/python_fullstack_demo

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# Full Stack Python App

Demo of a full-stack python app using Flask and SQLAlchemy. To install:

1. fork or clone the repo
2. create a virtualenv `virtualenv env`
3. activate the virtualenv `source env/bin/activate`
4. install the requirements: `pip install -r requirements.txt`
5. create the db: `createdb python_pets`
6. create the tables: `python model.py`
7. seed the db: `python seed.py`
8. start the server: `python server.py`