A simple and modern task management web application built with Flask. It allows users to create, update, and delete tasks, organize them by status, and keep track of daily todos. The app demonstrates CRUD operations, Flask basics, and a clean, responsive UI.
- User-friendly interface for managing tasks
- Add, edit, and delete todos
- Mark tasks as complete/incomplete
- Persistent storage (SQLite)
- Responsive design using Bootstrap
- Python 3.x
- Flask
- SQLite (bundled)
-
Clone the repository:
git clone https://github.com/jay789-code-pixel/flasktodoapp.git cd flasktodoapp -
Create and activate a virtual environment (optional but recommended):
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install dependencies:
pip install -r requirements.txt
-
Run the application:
python app.py
-
Visit http://localhost:5000 in your browser.
flasktodoapp/
├── app.py
├── requirements.txt
├── templates/
│ ├── index.html
│ └── ...
├── static/
│ ├── styles.css
│ └── ...
└── README.md
This project is licensed under the MIT License.