Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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)

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)