This is a simple TODO application built with Flask, a micro web framework for Python. The application allows users to create, read, update, and delete TODO items.
Before running the application, make sure you have the following installed:
- Python 3.x
- Flask
- SQLAlchemy
-
Clone the repository:
git clone https://github.com/your-username/flask-todo-app.git
-
Navigate to the project directory:
cd flask-todo-app
-
Install the required dependencies:
pip install -r requirements.txt
-
Run the Flask development server:
python app.py
-
Access the application in your web browser at http://localhost:8000.
-
Interact with the TODO app using the following features:
- Create: Fill in the title and description fields in the form and click the "Add TODO" button to create a new TODO item.
- Read: View all existing TODO items on the homepage.
- Update: Click the "Update" button next to a TODO item to update its title and description.
- Delete: Click the "Delete" button next to a TODO item to remove it from the list.
Contributions are welcome! If you find any bugs or want to add new features, please open an issue or submit a pull request.
For any questions or inquiries, please contact [email protected].