2018-03-19 19:25:13 +01:00
|
|
|
# Content Database
|
|
|
|
|
2019-01-09 23:35:11 +01:00
|
|
|
Content database for Minetest mods, games, and more.
|
2018-03-19 19:25:13 +01:00
|
|
|
|
2019-01-09 23:35:11 +01:00
|
|
|
Developed by rubenwardy, license GPLv3.0+.
|
2018-05-25 18:41:16 +02:00
|
|
|
|
|
|
|
## How-tos
|
|
|
|
|
2019-01-09 23:35:11 +01:00
|
|
|
Note: you should first read one of the guides on the [Github repo wiki](https://github.com/minetest/contentdb/wiki)
|
2018-05-27 21:15:35 +02:00
|
|
|
|
|
|
|
```sh
|
2019-01-09 23:35:11 +01:00
|
|
|
# Run celery worker
|
2018-05-27 21:15:35 +02:00
|
|
|
FLASK_CONFIG=../config.cfg celery -A app.tasks.celery worker
|
|
|
|
|
2018-05-25 18:41:16 +02:00
|
|
|
# if sqlite
|
|
|
|
python 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
|
2018-06-02 20:41:13 +02:00
|
|
|
FLASK_CONFIG=../config.cfg FLASK_APP=app/__init__.py flask db upgrade
|
2019-01-28 21:48:07 +01:00
|
|
|
|
|
|
|
# Enter docker
|
|
|
|
docker exec -it contentdb_app_1 bash
|
2018-05-25 18:41:16 +02:00
|
|
|
```
|