Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 411 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 411 Bytes

FlaskBlog

Following flask tutorial from Corey Schafer

SETUP

  • Log in into your mysql console and create a database

  • Install the requirements.txt

    pip install -r requirements.txt
  • Copy env to .env and fill it with appropriate database configuration of your computer or server

  • Run the migration

    flask db upgrade
  • Run the app

    flask run