mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 01:23:48 +01:00
Content database for Minetest mods, games, and more
.github | ||
app | ||
migrations | ||
utils | ||
.gitignore | ||
babel.cfg | ||
config.example.cfg | ||
docker-compose.yml | ||
Dockerfile | ||
LICENSE.txt | ||
README.md | ||
requirements.txt |
Content Database
Content database for Minetest mods, games, and more.
Developed by rubenwardy, license GPLv3.0+.
How-tos
Note: you should first read one of the guides on the Github repo wiki
# Run celery worker
FLASK_CONFIG=../config.cfg celery -A app.tasks.celery worker
# if sqlite
python utils/setup.py -t
rm db.sqlite && python setup.py -t && FLASK_CONFIG=../config.cfg FLASK_APP=app/__init__.py flask db stamp head
# Create migration
FLASK_CONFIG=../config.cfg FLASK_APP=app/__init__.py flask db migrate
# Run migration
FLASK_CONFIG=../config.cfg FLASK_APP=app/__init__.py flask db upgrade
# Enter docker
docker exec -it contentdb_app_1 bash