Indentify Bird Song !
Go to file
Samuel Ortion 8f031c432f Add about route, fix bootstrap form styles 2022-05-27 10:19:49 +02:00
data Add level 2022-05-26 16:15:21 +02:00
language Update 2022-05-27 10:09:21 +02:00
migrations Update model & translations' 2022-05-26 13:58:46 +02:00
static Update 2022-05-27 10:09:21 +02:00
templates Add about route, fix bootstrap form styles 2022-05-27 10:19:49 +02:00
utils Update 2022-05-27 10:09:21 +02:00
.gitignore Update 2022-05-27 10:09:21 +02:00
README.md Update 2022-05-27 10:09:21 +02:00
TODO Add about route, fix bootstrap form styles 2022-05-27 10:19:49 +02:00
app.py Add about route, fix bootstrap form styles 2022-05-27 10:19:49 +02:00
babel.cfg Update 2022-05-27 10:09:21 +02:00
config.py.example Inital commit 2022-05-19 11:07:34 +02:00
game.py Add level 2022-05-26 16:15:21 +02:00
make_migration.sh Update model & translations' 2022-05-26 13:58:46 +02:00
model.py Update model & translations' 2022-05-26 13:58:46 +02:00
requirements.txt Update model & translations' 2022-05-26 13:58:46 +02:00
sync.sh Add about route, fix bootstrap form styles 2022-05-27 10:19:49 +02:00

README.md

BirdQuizz

Identify Bird Song !

Installation

git clone https://forge.chapril.org/UncleSamulus/BirdQuizz.git
cd BirdQuizz
python3 -m venv
. venv/bin/activate
pip install -r requirements.txt

Database configuration

sudo mysql
CREATE DATABASE birdquizz;
GRANT ALL ON birdquizz.* TO birdquizz@localhost IDENTIFIED BY 'secret';

Configuration

cp config.py.example config.py

Database migration

flask db migrate -m "Migration message."
flask db upgrade # Perform migration (after script verification in ./migrations/versions/)