https://github.com/prakshi-23/to-do-app
Simple To-Do Application using Flask Python
https://github.com/prakshi-23/to-do-app
flask flask-application python python-app todoapp webdevelopment
Last synced: 3 months ago
JSON representation
Simple To-Do Application using Flask Python
- Host: GitHub
- URL: https://github.com/prakshi-23/to-do-app
- Owner: Prakshi-23
- Created: 2025-02-05T08:42:22.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-09T15:53:11.000Z (over 1 year ago)
- Last Synced: 2025-06-09T00:05:40.520Z (about 1 year ago)
- Topics: flask, flask-application, python, python-app, todoapp, webdevelopment
- Language: HTML
- Homepage:
- Size: 56.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# To-Do Flask App
A simple To-Do application built using Flask.
## Features
- Add tasks
- Delete tasks
- Update tasks
## Prerequisites
Ensure you have the following installed on your system:
- Python (>=3.7)
- pip (Python package manager)
## Installation and Setup
### 1. Open CMD in the App Folder
Navigate to the folder where your Flask To-Do app is located.
### 2. Install Virtual Environment
```sh
pip install virtualenv
```
### 3. Create and Activate Virtual Environment
```sh
virtualenv env
# Activate virtual environment
# Windows
env\Scripts\activate
```
### 4. Install Flask and Dependencies
```sh
pip install flask
pip install pymysql
```
### 5. Run the Application
```sh
py app.py
```
### Note: Keep the html files in templates folder inside your project folder and virtualenv env command will create a folder as well also keep static folder to store the images, css, and js files that is used in the app
The app will be running at: `http://127.0.0.1:5000/`
##