Welcome to the Flask Blog repository! This is a simple blog application written in Flask, a Python web framework. This project allows users to create, read, update, and delete blog posts. It serves as a basic template for building your own Flask-based blog application.
- User-friendly interface to create, edit, and delete blog posts.
- Displays a list of existing blog posts with their titles and brief descriptions.
- Supports user authentication to protect certain actions (e.g., editing, deleting) for authorized users only.
- Minimalistic design for easy customization and extension.
To run this Flask blog application locally on your machine, follow these steps:
-
Clone the repository to your local machine:
git clone https://github.com/ASH1321/Flask_Blog.git
- To run the Flask development server and use the blog application, follow these steps:
- Ensure you are in the project's root directory and the virtual environment is activated (if you created one).
- Start the Flask development server:
bash
- flask run
- Open your web browser and navigate to http://127.0.0.1:5000 or http://localhost:5000 to access the blog application.
