選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Simon Bowie cdb5539e08 adding more of the practices route and fixing editing for tools 2年前
nginx-conf Added MariaDB config for production use 3年前
web adding more of the practices route and fixing editing for tools 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'@'%';