Indentify Bird Song !
Go to file
Samuel Ortion 899487245d Update model & translations' 2022-05-26 13:58:46 +02:00
language Update model & translations' 2022-05-26 13:58:46 +02:00
migrations Update model & translations' 2022-05-26 13:58:46 +02:00
static/styles Inital commit 2022-05-19 11:07:34 +02:00
templates Update model & translations' 2022-05-26 13:58:46 +02:00
.gitignore Add base game functionnality 2022-05-26 10:27:26 +02:00
README.md Inital commit 2022-05-19 11:07:34 +02:00
app.py Update model & translations' 2022-05-26 13:58:46 +02:00
babel.cfg Update model & translations' 2022-05-26 13:58:46 +02:00
config.py.example Inital commit 2022-05-19 11:07:34 +02:00
game.py Add base game functionnality 2022-05-26 10:27:26 +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

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

python3
from app import *
app.app_context().push()
db.create_all()