An open API service indexing awesome lists of open source software.

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

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/`

##