By Mugilan
- Cleanup old Profile Pics
- Add and delete posts
- Change to MongoDB instead of SQLAlchemy
- Paginate Posts to Home page
- Refactor Code
-
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()