You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Simon Bowie 2a1ba671fa changed header 3 vuotta sitten
nginx-conf Added MariaDB config for production use 3 vuotta sitten
web changed header 3 vuotta sitten
.env.template Updated environment file template 3 vuotta sitten
.gitignore Added environment file template 3 vuotta sitten
README.md Updated README 3 vuotta sitten
docker-compose.prod.yml Added Gunicorn and Nginx for production use 3 vuotta sitten
docker-compose.yml Initial commit 3 vuotta sitten

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'@'%';