1. Install dependencies.
bun install2. Copy the environment file and fill it in.
cp .env.example .envYou'll need a Hack Club OAuth app — create one at auth.hackclub.com. Set HACKCLUB_REDIRECT_URI to http://localhost:5173/api/auth/callback for local dev. It must match exactly what's registered on your OAuth app.
You'll also need a PostgreSQL database running. If you don't have one yet:
createdb paradoxThen set DATABASE_URL in your .env to your connection string.
3. Run the database migration.
bun run db:migrate4. Start the dev server.
bun run devThe app runs at http://localhost:5173.