A fork of the original contentdb, codenamed "Okapi".
Go to file
rubenwardy 015abe5a25 Indicate stuck releases in todo list and allow admins to delete them 2019-11-14 23:39:41 +00:00
.github Add issue templates 2019-11-12 22:49:47 +00:00
app Indicate stuck releases in todo list and allow admins to delete them 2019-11-14 23:39:41 +00:00
migrations Add website and donation support 2019-07-02 00:45:16 +01:00
utils Enable hot code reloading 2019-11-14 23:38:29 +00:00
.gitignore Add translation support 2019-07-29 21:44:39 +01:00
Dockerfile Fix CDB running as root in docker container 2019-11-14 22:53:46 +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 Fix permission issues by not mounting source code 2019-11-14 23:02:36 +00:00
requirements.txt Improve docker image and deployment scripts 2019-11-14 22:24:37 +00: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