Tools for Honkai: Star Rail
If you are using IntelliJ IDEA (or any other Jetbrains IDE), you can use the provided run configurations to run the dev server.
- Node.js 20.x
- Bun 1.x
FIREBASE_CONFIG
: Firebase config JSON stringALGOLIA_SEARCH_API_KEY
: Algolia search API key. App ID and index name are inalgolia.json
.RECAPTCHA_SITE_KEY
: reCAPTCHA site key
* I'm working in progress to work without these environment variables.
Create .env
file in nuxt
directory with the following content.
GITHUB_PACKAGES_TOKEN=<token>
You need to create personal access token in Settings > Developer Settings > Personal Access Tokens > Tokens (classic). read:packages
scope is required.
Then, install npm packages.
cd nuxt
bun install
bun dev
bun generate
bun preview # to preview the generated site
- Node.js 20.x
- Yarn 1.x (runs v3.x)
- Firebase CLI (can be installed with
npm -g install firebase-tools
)
cd firebase/functions
yarn install
cd ..
yarn ts-build-server &
yarn emulators
kill %1 # when you want to stop the server