* docs: migrate from mkdocs to mdbook - Rename old mkdocs docs/ to old-docs/ for reference - Set up new docs/ with mdbook (book.toml + src/ tree) - Mirror full nav structure from mkdocs.yml into SUMMARY.md - Add Justfile-docs with docs-serve, docs-build, docs-check, docs-install recipes - Import Justfile-docs from root Justfile - Rewrite .github/workflows/docs.yml: build step uses taiki-e/install-action to install mdbook, split into separate build + deploy jobs, PR builds run the check step too * ci(docs): pin actions to SHAs, install mdbook via release binary * ci(docs): install mdbook from apt instead of curling a release binary * dev: replace mkdocs python stack with mdbook in dev image * ci(docs): apt only works on Debian; restore release binary install for Ubuntu CI * docs: fix duplicate file entries in SUMMARY.md * docs: remove docs-install recipe * docs: remove site-url from book.toml to fix asset loading * dev: install mdbook from upstream release binary, not Debian apt The Debian package (0.4.x+ds) strips bundled font assets, leaving the built site without fonts/fonts.css. Use the upstream tarball (same as CI) so the theme is complete. Handles x86_64 and aarch64. * docs: vendor mdbook tarballs in dev/mdbook/, install from there Dockerfile.dev uses COPY + tar to install the right arch at build time. CI extracts the x86_64 tarball directly from the checkout. No network access required for either — and no stripped-fonts Debian package. * fix: unwritten
10 KiB
Configuration Info
The codebase uses a file called conf.json5 to handle
various configurable options. It also reads some things from the process environment.
What is JSON5?
JSON5 is an extension of JSON which is better suited for configuration files.
You can read more about it here, but the main benefits for us are as follows:
- Comments
- No Quoting properties
- Trailing Commas
Example Config File
{
MONGO_DATABASE_NAME: "testingdb",
CAPTCHA_SECRET_KEY: "something_secret",
SESSION_SECRET: "something_secret",
FLO_API_URL: "https://flo.example.com",
EAG_API_URL: "https://eag.example.com",
MIN_API_URL: "https://min.example.com",
FLO_OAUTH2_INFO: {
CLIENT_ID: "DUMMY_CLIENT_ID",
CLIENT_SECRET: "DUMMY_CLIENT_SECRET",
REDIRECT_URI: "https://example.com",
},
EAG_OAUTH2_INFO: {
CLIENT_ID: "DUMMY_CLIENT_ID",
CLIENT_SECRET: "DUMMY_CLIENT_SECRET",
REDIRECT_URI: "https://example.com",
},
ARC_AUTH_TOKEN: "unused",
OUR_URL: "https://example.com",
INVITE_CODE_CONFIG: {
BATCH_SIZE: 2,
INVITE_CAP: 100,
BETA_USER_BONUS: 5,
},
CDN_CONFIG: {
WEB_LOCATION: "http://localhost:9000/tachi-public",
SAVE_LOCATION: {
TYPE: "S3_BUCKET",
ENDPOINT: "http://tachi-s3:9000",
ACCESS_KEY_ID: "minio",
SECRET_ACCESS_KEY: "password",
BUCKET: "tachi-public",
REGION: "us-east-1",
},
},
TACHI_CONFIG: {
TYPE: "omni",
NAME: "Tachi Example Config",
GAMES: [
"iidx",
"museca",
"maimai",
"sdvx",
"ddr",
"bms",
"chunithm",
"usc",
],
IMPORT_TYPES: [
"file/eamusement-iidx-csv",
"file/batch-manual",
"file/solid-state-squad",
"file/pli-iidx-csv",
"ir/direct-manual",
"ir/barbatos",
"ir/fervidex",
"ir/fervidex-static",
"ir/beatoraja",
"ir/usc",
"ir/kshook-sv3c",
"api/eag-iidx",
"api/eag-sdvx",
"api/flo-iidx",
"api/flo-sdvx",
"api/min-sdvx",
],
},
LOGGER_CONFIG: {
FILE: false,
CONSOLE: true,
LOG_LEVEL: "info",
},
}
!!! warning DO NOT BLINDLY COPY THIS CONFIGURATION FILE!
Seriously, The `SESSION_SECRET` token MUST not be
public.
JSON5 Properties
All properties are required unless called optional or they have a default.
MONGO_DATABASE_NAME
- Type: String
What collection to use for your database.
CAPTCHA_SECRET_KEY
- Type: String
Google gives us a Captcha Secret Key in order for Captcha to work on our site.
SESSION_SECRET
- Type: String
This key is used to encrypt Session Cookies.
!!! warning If this key is figured out, anyone can log in as anyone.
Make sure this is an appropriately long string
generated from a *cryptographically secure* source.
That is, do not just mash your keyboard.
You can generate secure random strings with something
like [KeePass](https://keepass.info/).
FLO_API_URL, EAG_API_URL, MIN_API_URL
- Type: String
The URL for the FLO, EAG or MIN services. This is used for integration
with the Kamaitachi version of Tachi.
FLO/MIN/EAG_OAUTH2_INFO
- Type: OAuth2Info (Optional)
If present, these define our OAuth2 Client data for interacting with these services. These are like this like this:
{
FLO_OAUTH2_INFO: {
CLIENT_ID: "OUR_CLIENT_ID",
CLIENT_SECRET: "OUR_CLIENT_SECRET",
REDIRECT_URI: "https://tachi.example.com"
}
}
!!! warning The server will throw a fatal error if you have OAUTH2_INFO set for one service, but not an API_URL.
Maybe a better solution would be to have the API_URL inside the OAUTH2_INFO. Ah well.
CLIENT_DEV_SERVER
- Type: String
- Default: Null
If present, and a string, this points to the local dev server for a react app. Having this option set results in CORS being enabled for that specific URL. This is useful for local development, but should not be used in production.
RATE_LIMIT
- Type: Positive Integer
- Default: 500
Determines how many requests an APIKey OR IP can make every minute.
The default is set to the very generous 500, as it's possible for users to accidentally hit 100 requests/min by refreshing very fast.
OAUTH_CLIENT_CAP
- Type: Positive Integer
- Default: 15
The amount of OAuth2Clients one user can create at any one time. Defaults to 15.
OPTIONS_ALWAYS_SUCCEEDS
- Type: Boolean
- Default: false
If true, all OPTIONS requests to the server will return 200, no matter what. This is a hack used for development CORS.
BEATORAJA_QUEUE_SIZE
- Type: Integer
- Default: 3
How many unique players have to have played a chart on the beatoraja IR for it to be de-orphaned.
!!! note Note that LR2 scores or database imports do not count towards this total.
!!! warning The lowest legal value for this field is 2.
OUR_URL
- Type: String
Where this server is hosted. This is used to provide callback URLs inside emails.
EMAIL_CONFIG
- Type: EMAIL_CONFIG (required)
SMTP is always configured. Set:
TACHI_EMAIL_FROM-Fromheader (must match a verified sender when using Postmark).TACHI_EMAIL_HOST,TACHI_EMAIL_PORT,TACHI_EMAIL_SECURE(true/false).- Optionally
TACHI_EMAIL_AUTH_USER/TACHI_EMAIL_AUTH_PASSfor SMTP auth (local Mailpit typically needs none). - For Postmark, use host
smtp.postmarkapp.com(usually port587withTACHI_EMAIL_SECURE=false) and set either auth field to your server API token (both username and password are the token for Postmark SMTP).
TRANSPORT_OPS is derived from these variables and passed to Nodemailer.
interface EMAIL_CONFIG {
FROM: string;
TRANSPORT_OPS: any;
}
INVITE_CODE_CONFIG
- Type: INVITE_CODE_CONFIG (Optional)
Configures how invites are created by Tachi. If not present, the site will not require invite codes at all.
BATCH_SIZE determines how many invites to create every month,
INVITE_CAP determines how many invites a user can have -- ever.
BETA_USER_BONUS determines how many additional invites users of Kamaitachi 1 have out of the box.
interface INVITE_CODE_CONFIG: {
BATCH_SIZE: integer;
INVITE_CAP: integer;
BETA_USER_BONUS: integer;
};
TACHI_INVITE_ADMIN_INITIAL_INVITE_CODE
- Type: String (Optional, environment variable only)
A one-time bootstrap invite code for first-time instance setup. When INVITE_CODE_CONFIG is
configured, new instances have a chicken-and-egg problem: registration requires an invite code,
but invite codes can only be created by an existing user.
Set this environment variable to a long, random secret. The first person to register with this
code - while the account table is still empty - becomes the site admin. Once the first admin
exists, the code is no longer accepted.
TACHI_CONFIG
- Type: TACHI_CONFIG
Configures what the Tachi Server instance supports, and what it's generally doing.
interface TACHI_CONFIG: {
NAME: string;
TYPE: "kamai" | "boku" | "omni";
GAMES: Game[];
IMPORT_TYPES: ImportTypes[];
}
NAME
The name of the server. This is reported at /api/v1/status.
TYPE
What type of tachi-server this is. kamai will enable Kamaitachi Only routes, boku will enable
Bokutachi only routes, and omni will enable both.
GAMES
What games are supported by this server. For more information, see Games.
IMPORT_TYPES
What importTypes are legal for this server. For more information, see Import Types.
LOGGER_CONFIG
- Type: LOGGER_CONFIG (Optional)
Configures how logs are sent around in Tachi.
interface LOGGER_CONFIG: {
LOG_LEVEL: "debug" | "verbose" | "info" | "warn" | "error" | "severe" | "crit";
CONSOLE: boolean;
FILE: boolean;
SEQ_API_KEY: string | undefined;
DISCORD?: {
WEBHOOK_URL: string;
WHO_TO_TAG: string[];
};
}
LOG_LEVEL
What log level to use out of the box. If no LOGGER_CONFIG is provided, defaults to "info".
CONSOLE
Whether to log to the console or not. If no LOGGER_CONFIG is provided, defaults to true.
FILE
Whether to log to a log file or not. If no LOGGER_CONFIG is provided, defaults to false.
SEQ_API_KEY
(Optional)
If present, this is an API Key for logging to a Seq server, which is set in the process environment.
If no LOGGER_CONFIG is provided, this is not set.
DISCORD
(Optional)
If present, this configures a discord WEBHOOK_URL to log info or higher messages to.
WHO_TO_TAG is an array of userIDs to tag in the case of a severe or fatal error.
If no LOGGER_CONFIG is provided, this is not set.
CDN_CONFIG
- Type: CDN_CONFIG
Configures the CDN for the Tachi Server. Files are always stored in an S3-compatible bucket (AWS S3, Backblaze, MinIO, etc.).
For local development with docker-compose-dev.yml, run the tachi-s3 MinIO service and point SAVE_LOCATION.ENDPOINT at it (from the tachi-dev container, http://tachi-s3:9000). Use a WEB_LOCATION URL that browsers can load (for example http://localhost:9000/<bucket> when MinIO’s API port is published to the host).
interface CDN_CONFIG: {
WEB_LOCATION: string;
SAVE_LOCATION: {
TYPE: "S3_BUCKET";
ENDPOINT: string;
ACCESS_KEY_ID: string;
SECRET_ACCESS_KEY: string;
BUCKET: string;
KEY_PREFIX?: string;
REGION?: string;
};
}
WEB_LOCATION
Configures a URL to redirect users to when returning CDN contents. This could be something like https://cdn.boku.tachi.ac or a path-style URL to your bucket on MinIO.
SAVE_LOCATION
Configures the S3-compatible API endpoint and bucket used for uploads (profile pictures, score import payloads, etc.).
Process Environment
The process environment also contains necessary things for functional Tachi Server running.
!!! info These variables are put into the process environment instead of the conf.json5 file because they're easier to change between docker instances. This Helps us scale and deploy.
PORT
The PORT environment variable specifies what port our express server should listen to. If not set, this will log a warning and default to 8080.
MONGO_URL
Where our mongoDB instance is. This would be localhost:27017 if hosting on the same box.
If not set, this will terminate the process with a critical error.
SEQ_URL
Where a Seq instance is. If no LOGGER_CONFIG.SEQ_API_KEY was defined, this is fine. If it was,
this will log a warning, and nothing will be sent to Seq.
NODE_ENV
Expected to be either "dev", "production", "staging" or "test". If not set, this will terminate the process.