Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Simon Bowie ce3a2fcf24 some stylistic changes to match wireframes il y a 3 ans
nginx-conf Added MariaDB config for production use il y a 3 ans
web some stylistic changes to match wireframes il y a 3 ans
.env.template Updated environment file template il y a 3 ans
.gitignore Added environment file template il y a 3 ans
README.md Updated README il y a 3 ans
docker-compose.prod.yml Added Gunicorn and Nginx for production use il y a 3 ans
docker-compose.yml Initial commit il y a 3 ans

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