A simple microblog built using Flask. Made to refresh my Flask knowledge ;)
- Flask
- Flask-Login
- Flask-WTF
- Flask-SQLAlchemy
- Jinja2
- Bootstrap etc.
- Login
- Register
- Create, Read, Update, and Delete Post
- Account Management (Read, Update)
- View posts of other users
- Logout
- Click on
Code>Download ZIP - Unzip it and open Terminal (I am using
bash) cdto the root folder (ie,cdtoMicroblog-main/from where you are standing.)python3 -m venv venvsource venv/bin/activatepip install -r requirements.txtexport FLASK_APP='manage.py'flask db initflask db migrateflask db upgrade- Finally,
python manage.py - Visit http://localhost:8000 in your browser and
Registeran account an createNew Post!
