Skip to content

A blogging application in python flask. Learning flask with Corey Schafer

Notifications You must be signed in to change notification settings

deepamgupta/learn-flask

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

learn-flask

Flask Blog

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

How to run the application?

  1. Clone the repo (obviously 😁)
  2. Open the learn-flask folder in terminal
  3. Make sure you have python3 and python3-venv installed
  4. Create a virtual environment
    • python3 -m venv venv
  5. Activate the environment
    • source /venv/bin/activate
  6. Install all the dependencies
    • pip install -r requirements.txt
  7. Run the application
    • python3 run.py
  8. The application is running on localhost:5000 or 127.0.0.1:5000

Note: The steps 4 and 5 may differ on Windows.

If you get any issue, feel free to ask. 😉

Credits

  • 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...😉