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

https://github.com/d-mg17/flask_to-do_app

This is a simple to-do app built with Flask framework.It demonstrates how to build a CRUD application with Flask, SQLAlchemy, and Jinja2. It also shows how to use Bootstrap 4 with Flask.
https://github.com/d-mg17/flask_to-do_app

crud-application flask python sqlalchemy-python to-do-app

Last synced: 4 months ago
JSON representation

This is a simple to-do app built with Flask framework.It demonstrates how to build a CRUD application with Flask, SQLAlchemy, and Jinja2. It also shows how to use Bootstrap 4 with Flask.

Awesome Lists containing this project

README

        

# To-Do App using Flask

This is a simple to-do app built with Flask framework.It demonstrates how to build a CRUD application with Flask, SQLAlchemy, and Jinja2. It also shows how to use Bootstrap 4 with Flask.

## Run Locally

Clone the project

```bash
git clone https://link-to-project
```

Go to the project directory

```bash
cd my-project
```

Activate virtual environment (Windows):

```bash
.\venv\Scripts\activate.ps1
```

Activate virtual environment (Mac/Linux):

```bash
source venv/Scripts/activate
```

Install dependencies

```bash
pip3 install -r dependencies.txt
```

Start the server

```bash
python3 main.py
```

## Authors

- [@d-mg17](https://www.github.com/d-mg17)

## Acknowledgements
- [@TechWithTim](https://www.github.com/techwithtim)