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.
- Host: GitHub
- URL: https://github.com/d-mg17/flask_to-do_app
- Owner: d-mg17
- Created: 2023-06-09T15:05:23.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-11T15:37:24.000Z (about 2 years ago)
- Last Synced: 2025-01-07T06:48:02.849Z (6 months ago)
- Topics: crud-application, flask, python, sqlalchemy-python, to-do-app
- Language: Python
- Homepage:
- Size: 10.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)