https://github.com/bonnie/python_fullstack_demo
https://github.com/bonnie/python_fullstack_demo
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bonnie/python_fullstack_demo
- Owner: bonnie
- Created: 2017-10-27T22:42:19.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-30T17:38:50.000Z (almost 8 years ago)
- Last Synced: 2025-05-14T15:16:51.778Z (5 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`