Add base project files including environment example, license, README, .gitignore, error classes, ESLint config, database modules, texture assets, repositories, routes, schemas, services, and server entry point. This establishes the foundational structure for a Yggdrasil-compatible REST API with modular error handling, database setup, and route organization.
24 lines
601 B
Plaintext
24 lines
601 B
Plaintext
#Config
|
|
WEB_PORT=3000
|
|
IS_PROD=FALSE
|
|
|
|
#MariaDB
|
|
DATABASE_HOST="host"
|
|
DATABASE_USER="username"
|
|
DATABASE_PASSWORD="Password"
|
|
DATABASE_NAME="database"
|
|
|
|
#Mojang API
|
|
SUPPORT_UUID_TO_NAME_HISTORY=TRUE
|
|
|
|
#Authlib-Injector
|
|
SUPPORT_AUTHLIB_INJECTOR=TRUE
|
|
SUPPORT_LEGACY_SKIN_API=TRUE #[legacy_skin_api]
|
|
SUPPORT_MOJANG_FALLBACK=FALSE #[no_mojang_namespace]
|
|
SUPPORT_MOJANG_TELEMETRY_BLOCKER=TRUE #[enable_mojang_anti_features]
|
|
SUPPORT_PROFILE_KEY=TRUE #[enable_profile_key]
|
|
SUPPORT_ONLY_DEFAULT_USERNAME=true #[username_check]
|
|
SUPPORT_REGISTER=TRUE
|
|
REGISTER_ENDPOINT="/register"
|
|
HOMEPAGE_URL=
|
|
SERVER_NAME="Yggdrasil" |