Skip to content

Mugilan-Codes/flask-blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flask-Blog

By Mugilan

Todo

  • Cleanup old Profile Pics
  • Add and delete posts
  • Change to MongoDB instead of SQLAlchemy
  • Paginate Posts to Home page
  • Refactor Code

How to Run

  • Create a Virtual Environment

    python3 -m venv .venv
    source .venv/bin/activate
  • Install required packages

    pip install -r requirements.txt
  • Run the Flask app

    flask run
  • migrate db

    from flaskblog import db
    db.create_all()

Flask-Blog Github Link