A full-fledged blogging application in flask
- Register yourself
- Login with the credentials
- Create Posts (Title and Content)
- See other's posts
- Update your post
- Delete your post
- Forgot Password? => Get a
reset password
link on your mail
- Clone the repo (obviously 😁)
- Open the learn-flask folder in terminal
- Make sure you have python3 and python3-venv installed
- Create a virtual environment
python3 -m venv venv
- Activate the environment
source /venv/bin/activate
- Install all the dependencies
pip install -r requirements.txt
- Run the application
python3 run.py
- The application is running on
localhost:5000
or127.0.0.1:5000
Note: The steps 4 and 5 may differ on Windows.
If you get any issue, feel free to ask. 😉
- I built this to start learning flask
- Dhanyawaad 🙏 to Corey Schafer for this insightful learning series
- Flask Tutorial: Corey Schafer on YouTube
- He has explained everything admirably well. This is a long series, but it is worth it.
- The best part, it is free...😉