A simple web application built with Python (Flask) that allows users to manage their daily tasks.
Users can add, edit, delete, and mark tasks as completed.
All data is stored in a SQLite database, and the app is hosted online for free.
- Add new daily tasks
- Edit existing tasks
- Mark tasks as completed
- Delete tasks
- SQLite database for data persistence
- Simple and responsive user interface ( HTML + CSS)
- Backend: Python 3.x, Flask
- Frontend: HTML, CSS,
- Database: SQLite
- Hosting: Render (Free web service)
- Version Control: GitHub
git clone https://github.com/<your-username>/daily-task-tracker.git
cd daily-task-tracker
## Create and activate a virtual environment
python -m venv venv
venv\Scripts\activate
### Install dependencies
pip install -r requirements.txt
#### Run app
python app.py