A sample blog application to learn Flask + SqlAlchemy
Python3.5+
You are recommended to use virtualenv to manage python version for any application
pip install -r requirements.txt
Change directory to Blog
and run:
flask db init
flask db migrate -m 'Your commit message'
flask db upgrade
Read more about Flask-Migrate at; https://flask-migrate.readthedocs.io/en/latest/
Make sure you are still at Blog
export FLASK_APP=app
export FLASK_ENV=development
flask run