A fork of the original contentdb, codenamed "Okapi".
Go to file
rubenwardy a47d222a47 Ignore IDEA files 2020-12-03 23:09:40 +00:00
.github Add issue templates 2019-11-12 22:49:47 +00:00
app Fix error emails not preserving whitespace 2020-12-03 23:09:17 +00:00
migrations Fix migration 2020-09-16 22:09:00 +01:00
utils Replace "Content DB" with "ContentDB" 2020-07-12 16:34:25 +01:00
.dockerignore Add data* to docker ignore 2020-01-22 22:11:01 +00:00
.gitignore Ignore IDEA files 2020-12-03 23:09:40 +00:00
.gitlab-ci.yml Add API tests 2020-01-19 19:09:04 +00:00
Dockerfile Add requirements lock file 2020-07-16 14:26:26 +01:00
LICENSE.txt Update README 2018-03-24 19:12:02 +00:00
README.md Implement package states for easier reviews 2020-09-16 17:51:03 +01:00
babel.cfg Add translation support 2019-07-29 21:44:39 +01:00
config.example.cfg Disable email in default config 2020-09-01 15:26:10 +01:00
docker-compose.yml Add celery exporter 2020-04-24 00:49:40 +01:00
requirements.lock.txt Bump cryptography from 2.9.2 to 3.2 (#242) 2020-10-27 22:55:53 +00:00
requirements.txt Add requirements lock file 2020-07-16 14:26:26 +01:00

README.md

Content Database

Build status

Content database for Minetest mods, games, and more.
Developed by rubenwardy, license GPLv3.0+.

Getting started (debug/dev)

Docker is the recommended way to develop and deploy ContentDB.

  1. Install docker and docker-compose.

    Debian/Ubuntu:

     sudo apt install docker-ce docker-compose
    
  2. Copy config.example.cfg to config.cfg.

  3. (Optional) Set up mail in config.cfg. Make sure to set USER_ENABLE_EMAIL to True.

  4. (Optional) Set up GitHub integration

    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.
  5. Create config.env:

     POSTGRES_USER=contentdb
     POSTGRES_PASSWORD=password
     POSTGRES_DB=contentdb
     FLASK_DEBUG=1
    
  6. Start docker images:

     docker-compose up --build
    
  7. Setup database:

     ./utils/run_migrations.sh
    
  8. Create initial data

    1. ./utils/bash.sh
    2. Either python utils/setup.py -t or python utils/setup.py -o:
      1. -o creates just the admin, and static data like tags, and licenses.
      2. -t will do -o and also create test packages. (Recommended)
  9. View at http://localhost:5123. The admin username is rubenwardy and the password is tuckfrump.

In the future, starting CDB is as simple as:

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

# Hot/live reload (only works with FLASK_DEBUG=1)
./utils/reload.sh

# Cold update a running version of CDB with minimal downtime (production)
./utils/update.sh

# Enter docker
./utils/bash.sh

# Run migrations
./utils/run_migrations.sh

# Create new migration
./utils/create_migration.sh

VSCode: Setting up Linting

  • (optional) Install the Docker extension
  • Install the Python extension
    • 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

"material-icon-theme.folders.associations": {
	"packages": "",
	"tasks": "",
	"api": "",
	"meta": "",
	"blueprints": "routes",
	"scss": "sass",
	"flatpages": "markdown",
	"data": "temp",
	"migrations": "archive",
	"textures": "images",
	"sounds": "audio"
}

Database

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