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.
|
1 month ago | |
---|---|---|
data | 1 month ago | |
language | 1 month ago | |
migrations | 1 month ago | |
static | 1 month ago | |
templates | 1 month ago | |
utils | 1 month ago | |
.gitignore | 1 month ago | |
README.md | 1 month ago | |
TODO | 1 month ago | |
app.py | 1 month ago | |
babel.cfg | 1 month ago | |
config.py.example | 1 month ago | |
game.py | 1 month ago | |
make_migration.sh | 1 month ago | |
model.py | 1 month ago | |
requirements.txt | 1 month ago | |
sync.sh | 1 month ago |
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/)