https://github.com/luminir/simple-mysql-todolist
Using mysql to make a todolist
https://github.com/luminir/simple-mysql-todolist
mysql python-flask
Last synced: about 1 month ago
JSON representation
Using mysql to make a todolist
- Host: GitHub
- URL: https://github.com/luminir/simple-mysql-todolist
- Owner: Luminir
- Created: 2024-12-07T15:45:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-07T15:50:20.000Z (over 1 year ago)
- Last Synced: 2025-04-03T14:46:30.287Z (about 1 year ago)
- Topics: mysql, python-flask
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 📝 A simple todo list
## Background:
This is a school final project, even the website is relatively simple but i learn a lot from this
## Set up the database:
Mysql Workbench is used as the database. You will only have to modify this part
#### app.py:
```bash
db_connect = {
'host': '127.0.0.1', # mysql host
'port': 3306, # my port (feel free to change)
'user': 'root', # default user name
'password': 'YOUR_PASWORD'
}
```
## TIPS:
the web won't reload __dynamically__ so click the refresh button after saving the files