2018-03-19 19:25:13 +01:00
|
|
|
# Content Database
|
2020-04-21 00:01:59 +02:00
|
|
|
[![Build status](https://gitlab.com/minetest/contentdb/badges/master/pipeline.svg)](https://gitlab.com/minetest/contentdb/pipelines)
|
2018-03-19 19:25:13 +01:00
|
|
|
|
2020-04-21 00:01:59 +02:00
|
|
|
Content database for Minetest mods, games, and more.\
|
2019-01-09 23:35:11 +01:00
|
|
|
Developed by rubenwardy, license GPLv3.0+.
|
2018-05-25 18:41:16 +02:00
|
|
|
|
2020-09-01 15:57:03 +02:00
|
|
|
## Getting started (debug/dev)
|
2018-05-25 18:41:16 +02:00
|
|
|
|
2020-09-01 15:57:03 +02:00
|
|
|
Docker is the recommended way to develop and deploy ContentDB.
|
2018-05-27 21:15:35 +02:00
|
|
|
|
2020-09-01 15:57:03 +02:00
|
|
|
1. Install `docker` and `docker-compose`.
|
2018-05-27 21:15:35 +02:00
|
|
|
|
2020-09-16 18:51:03 +02:00
|
|
|
Debian/Ubuntu:
|
|
|
|
|
2020-09-01 15:57:03 +02:00
|
|
|
sudo apt install docker-ce docker-compose
|
2018-05-25 18:41:16 +02:00
|
|
|
|
2020-09-01 16:05:31 +02:00
|
|
|
2. Copy `config.example.cfg` to `config.cfg`.
|
2019-01-28 21:48:07 +01:00
|
|
|
|
2020-09-01 16:05:31 +02:00
|
|
|
3. (Optional) Set up mail in config.cfg.
|
2020-09-01 16:25:52 +02:00
|
|
|
Make sure to set `USER_ENABLE_EMAIL` to True.
|
2020-09-01 15:57:03 +02:00
|
|
|
|
2020-09-01 16:05:31 +02:00
|
|
|
4. (Optional) Set up GitHub integration
|
2020-09-01 15:57:03 +02:00
|
|
|
1. Make a Github OAuth Client at <https://github.com/settings/developers>:
|
|
|
|
2. Homepage URL - `http://localhost:5123/`
|
|
|
|
3. Authorization callback URL - `http://localhost:5123/user/github/callback/`
|
|
|
|
4. Put client id and client secret in `GITHUB_CLIENT_ID` and `GITHUB_CLIENT_SECRET` in config.cfg.
|
|
|
|
|
2020-09-01 16:05:31 +02:00
|
|
|
5. Create config.env:
|
2020-09-01 15:57:03 +02:00
|
|
|
|
|
|
|
POSTGRES_USER=contentdb
|
|
|
|
POSTGRES_PASSWORD=password
|
|
|
|
POSTGRES_DB=contentdb
|
|
|
|
FLASK_DEBUG=1
|
|
|
|
|
2020-09-01 16:25:52 +02:00
|
|
|
6. Start docker images:
|
2020-09-01 15:57:03 +02:00
|
|
|
|
|
|
|
docker-compose up --build
|
|
|
|
|
2020-09-01 16:25:52 +02:00
|
|
|
7. Setup database:
|
2020-09-01 15:57:03 +02:00
|
|
|
|
|
|
|
./utils/run_migrations.sh
|
|
|
|
|
2020-09-01 16:25:52 +02:00
|
|
|
8. Create initial data
|
2020-09-01 15:57:03 +02:00
|
|
|
1. `./utils/bash.sh`
|
2020-09-16 18:51:03 +02:00
|
|
|
2. Either `python utils/setup.py -t` or `python utils/setup.py -o`:
|
2020-09-01 16:05:31 +02:00
|
|
|
1. `-o` creates just the admin, and static data like tags, and licenses.
|
2020-09-01 16:25:52 +02:00
|
|
|
2. `-t` will do `-o` and also create test packages. (Recommended)
|
2020-09-01 15:57:03 +02:00
|
|
|
|
2020-09-01 16:05:31 +02:00
|
|
|
9. View at <http://localhost:5123>.
|
|
|
|
The admin username is `rubenwardy` and the password is `tuckfrump`.
|
2020-09-01 15:57:03 +02:00
|
|
|
|
|
|
|
In the future, starting CDB is as simple as:
|
2020-01-18 02:42:47 +01:00
|
|
|
|
2020-09-01 15:57:03 +02:00
|
|
|
docker-compose up --build
|
|
|
|
|
|
|
|
To hot/live update CDB whilst it is running, use:
|
|
|
|
|
|
|
|
./utils/reload.sh
|
|
|
|
|
|
|
|
This will only work with python code and templates, it won't update tasks or config.
|
|
|
|
|
|
|
|
|
|
|
|
## How-tos
|
|
|
|
|
|
|
|
```sh
|
2020-01-18 02:42:47 +01:00
|
|
|
# Hot/live reload (only works with FLASK_DEBUG=1)
|
|
|
|
./utils/reload.sh
|
|
|
|
|
2020-09-01 15:57:03 +02:00
|
|
|
# Cold update a running version of CDB with minimal downtime (production)
|
2020-01-18 02:42:47 +01:00
|
|
|
./utils/update.sh
|
2020-09-01 15:57:03 +02:00
|
|
|
|
|
|
|
# Enter docker
|
|
|
|
./utils/bash.sh
|
|
|
|
|
|
|
|
# Run migrations
|
|
|
|
./utils/run_migrations.sh
|
|
|
|
|
|
|
|
# Create new migration
|
|
|
|
./utils/create_migration.sh
|
2018-05-25 18:41:16 +02:00
|
|
|
```
|
2019-11-27 02:06:24 +01:00
|
|
|
|
2020-09-01 16:05:31 +02:00
|
|
|
|
|
|
|
### VSCode: Setting up Linting
|
|
|
|
|
|
|
|
* (optional) Install the [Docker extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-docker)
|
|
|
|
* Install the [Python extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python)
|
|
|
|
* Click no to installing pylint (we don't want it to be installed outside of a virtual env)
|
|
|
|
* Set up a virtual env
|
|
|
|
* Replace `psycopg2` with `psycopg2_binary` in requirements.txt (because postgresql won't be installed on the system)
|
|
|
|
* `python3 -m venv env`
|
|
|
|
* Click yes to prompt to select virtual env for workspace
|
|
|
|
* Click yes to any prompts about installing pylint
|
|
|
|
* `source env/bin/activate`
|
|
|
|
* `pip install -r requirements`
|
|
|
|
* `pip install pylint` (if a prompt didn't appear)
|
|
|
|
* Undo changes to requirements.txt
|
|
|
|
|
|
|
|
### VSCode: Material Icon Folder Designations
|
|
|
|
|
|
|
|
```json
|
|
|
|
"material-icon-theme.folders.associations": {
|
|
|
|
"packages": "",
|
|
|
|
"tasks": "",
|
|
|
|
"api": "",
|
|
|
|
"meta": "",
|
|
|
|
"blueprints": "routes",
|
|
|
|
"scss": "sass",
|
|
|
|
"flatpages": "markdown",
|
|
|
|
"data": "temp",
|
|
|
|
"migrations": "archive",
|
|
|
|
"textures": "images",
|
|
|
|
"sounds": "audio"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2019-11-27 02:06:24 +01:00
|
|
|
## Database
|
|
|
|
|
|
|
|
|
|
|
|
```mermaid
|
|
|
|
classDiagram
|
|
|
|
|
|
|
|
User "1" --> "*" Package
|
|
|
|
User --> UserEmailVerification
|
|
|
|
User "1" --> "*" Notification
|
|
|
|
Package "1" --> "*" Release
|
|
|
|
Package "1" --> "*" Dependency
|
|
|
|
Package "1" --> "*" Tag
|
|
|
|
Package "1" --> "*" MetaPackage : provides
|
|
|
|
Release --> MinetestVersion
|
|
|
|
Package --> License
|
|
|
|
Dependency --> Package
|
|
|
|
Dependency --> MetaPackage
|
|
|
|
MetaPackage "1" --> "*" Package
|
|
|
|
Package "1" --> "*" Screenshot
|
|
|
|
Package "1" --> "*" Thread
|
|
|
|
Thread "1" --> "*" Reply
|
|
|
|
Thread "1" --> "*" User : watchers
|
|
|
|
User "1" --> "*" Thread
|
|
|
|
User "1" --> "*" Reply
|
|
|
|
User "1" --> "*" ForumTopic
|
|
|
|
|
|
|
|
User --> "0..1" EmailPreferences
|
|
|
|
User "1" --> "*" APIToken
|
|
|
|
APIToken --> Package
|
|
|
|
```
|