This is a simple To-Do application built using Flask. The application allows users to add, delete, and mark tasks as completed. The user interface is built using HTML and Tailwind CSS.
- Clone the repository:
git clone https://github.com/89Aman/To-do-app.git - Navigate to the project directory:
cd To-do-app - Install the dependencies using
requirements.txt:The project requirespip install -r requirements.txtflaskas a dependency.
- Run the application:
python app.py - Open your web browser and go to
http://127.0.0.1:5000/to access the To-Do app.
To deploy the application, you can use a platform like Heroku or any other cloud service provider. Here are the general steps to deploy on Heroku:
- Create a
Procfilein the project directory with the following content:web: python app.py - Install the Heroku CLI and log in to your Heroku account:
heroku login - Create a new Heroku app:
heroku create - Push the code to Heroku:
git push heroku master - Open the deployed app in your web browser:
heroku open
The application is now deployed and can be accessed via the Heroku URL provided.