Skip to content

Getting Started

Setup with Docker Compose (main setup)

  1. Navigate to core/apps/web

  2. Set up environment variables:

    cp .env.example .env
    

Fill in the required keys and tokens in your new .env file. For VITE_DISCORD_OAUTH_CLIENT_ID, retrive the token via the instructions given in the API installation page.

VITE_ must be prefixed to all environment variables in order for them to be accessible.

  1. Continue with the main setup instructions

Setup without Docker Compose

  1. Make sure pnpm is installed on your system.

  2. Navigate to core/apps/web

  3. Install dependencies

pnpm install
  1. Configure environment variables:
cp .env.example .env

Fill in the required keys and tokens in your new .env file.

VITE_ must be prefixed to all environment variables in order for them to be accessible.

  1. Finally, launch the app
pnpm run dev