Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tizz98/microblog
Flask Microblog (twitter clone)
https://github.com/tizz98/microblog
Last synced: 9 days ago
JSON representation
Flask Microblog (twitter clone)
- Host: GitHub
- URL: https://github.com/tizz98/microblog
- Owner: tizz98
- Created: 2015-11-27T18:47:59.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-30T15:15:42.000Z (almost 9 years ago)
- Last Synced: 2024-04-22T15:22:49.495Z (7 months ago)
- Language: Python
- Homepage:
- Size: 360 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# microblog
A simple microblog (twitter clone) platform using Flask.## Database Commands
- `db_create.py` : Create database
- `db_migrate.py` : Create migrations for model changes
- `db_updgrade.py` : Run the migrations
- `db_downgrade.py` : Rollback a migratioin## Running the app
- `run.py` : Run the app with `DEBUG=True`
- `run_prod.py` : Run the app with `DEBUG=False`### Source
Followed the tutorial from: [miguelgrinberg.com](http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world)