A fork of the original contentdb, codenamed "Okapi".
Go to file
rubenwardy 9f678d8fde Add issue templates 2019-11-12 22:49:47 +00:00
.github Add issue templates 2019-11-12 22:49:47 +00:00
app Make review threads public by default 2019-11-12 22:39:17 +00:00
migrations Add website and donation support 2019-07-02 00:45:16 +01:00
utils Create utils folder 2019-11-12 22:36:30 +00:00
.gitignore Add translation support 2019-07-29 21:44:39 +01:00
Dockerfile Add min and max Minetest version support 2019-01-28 20:48:07 +00:00
LICENSE.txt Update README 2018-03-24 19:12:02 +00:00
README.md Create utils folder 2019-11-12 22:36:30 +00:00
babel.cfg Add translation support 2019-07-29 21:44:39 +01:00
config.example.cfg Add translation support 2019-07-29 21:44:39 +01:00
docker-compose.yml Add basic dependency resolution 2019-09-03 00:42:51 +01:00
requirements.txt Add basic dependency resolution 2019-09-03 00:42:51 +01:00

README.md

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