Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 797 Bytes

File metadata and controls

28 lines (19 loc) · 797 Bytes

Python Flask Blog

Blog like webapp made using Python and Flask

This project was made by following a YouTube tutorial by Tech With Tim on how to build a blog like webapp in Python using the Flask web framework. It's features include:

  • User authentication
  • Creating and deleting posts
  • Viewing user's posts
  • User interaction (likes and comments)

Setup and run

In order to run this project, make sure you already have Python installed, then follow the instructions:

  1. Clone this repository

  2. Install flask, flask-sqlalchemy and flask-login

    pip install flask, flask-sqlalchemy, flask-login
  3. Run the app.py file in the project directory

    python app.py
  4. Access the server in your localhost http://127.0.0.1:5000