A simple Todo application built with Flask. This application allows users to create, update, and delete tasks. The application features a clean and responsive user interface powered by Bootstrap, ensuring an optimal experience. Users can easily add new tasks with titles and descriptions, update existing tasks, or remove completed ones with just a few clicks.
- Create new todo items.
- Update existing todo items.
- Delete todo items.
- Simple and responsive user interface.
- Flask: A lightweight WSGI web application framework in Python.
- Bootstrap: A front-end framework for developing responsive and mobile-first websites.
- HTML/CSS: For the frontend user interface.
- Deployed on: Vercel
🌐 Chekout the Application : Link
Directory structure:
└── iamratinder-ToDo-flask-application/
├── Readme.md
├── app.py
├── requirements.txt
├── vercel.json
├── static/
│ └── style.css
└── templates/
├── base.html
├── index.html
└── update.html
git clone https://github.com/iamratinder/ToDo-flask-application.git
cd ToDo-flask-application
python -m venv venv
Windows:
.\venv\Scripts\activate
macOS/Linux:
source venv/bin/activate
pip install -r requirements.txt
python app.py
- Open your web browser and go to
http://127.0.0.1:5000
to view the Todo application.