Simon Bowie 2b7ded1cb3 linking tools and practices 3年前
nginx-conf Added MariaDB config for production use 3年前
web linking tools and practices 3年前
.env.template Updated environment file template 3年前
.gitignore Added environment file template 3年前
README.md Updated README 3年前
docker-compose.prod.yml Added Gunicorn and Nginx for production use 3年前
docker-compose.yml Initial commit 3年前

README.md

To build the database run:

docker exec -it python python from app import db, create_app, models db.create_all(app=create_app())

For creating database and user:

CREATE DATABASE toolkit; CREATE USER 'flask'@'%' IDENTIFIED BY '[PASSWORD]'; GRANT CREATE, INSERT, UPDATE, SELECT, DELETE ON toolkit.* TO 'flask'@'%';