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 51bad9749a added routes for new modules for database changes пре 2 година
nginx-conf Added MariaDB config for production use пре 3 година
web added routes for new modules for database changes пре 2 година
.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'@'%';