// temporary how to add languages:
use ISO 639-1 code names
create YOUR-LANG-CODE.json
file in messages/
add YOUR-LANG-CODE
to src/configs/locales.json
add YOUR-LANG-CODE
to src/types/Locale.type.ts
Note
I will provide the terminal commands only for bun, but you can use any other Node.js package manager.
Expand list
Expand steps
test
Expand steps
First, you need to clone this repository and open it:
git clone https://github.com/FreesmTeam/website-freesmlauncher
cd website-freesmlauncher
Second, install all dependencies with the following command:
bun i
After that you can start the project either in development mode:
bun dev
or in production mode:
bun run build
bun start
Expand steps
test