pip install -r backend/requirements.txt
Open MySQL shell:
CREATE DATABASE todo CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
GRANT ALL ON todo.* TO 'todo'@'%' IDENTIFIED BY 'todo';
Open interactive Python shell and execute:
from backend.app import db
db.create_all()
python backend/app.py
Content type
Image
Digest
Size
39.8 MB
Last updated
about 8 years ago
docker pull mrmoneyc/flask-todo