2026-03-03 02:40:28 +05:30
|
|
|
# Base URL for frontend -> backend calls.
|
|
|
|
|
# Use `auto` to target the same host currently serving Mission Control on port 8000.
|
|
|
|
|
# Example explicit override: https://mc.example.com
|
|
|
|
|
NEXT_PUBLIC_API_URL=auto
|
2026-02-08 15:31:34 +00:00
|
|
|
|
2026-02-11 19:10:23 +05:30
|
|
|
# Auth mode: clerk or local.
|
|
|
|
|
# - clerk: Clerk sign-in flow
|
|
|
|
|
# - local: shared bearer token entered in UI
|
|
|
|
|
NEXT_PUBLIC_AUTH_MODE=local
|
|
|
|
|
|
|
|
|
|
# Clerk auth (used when NEXT_PUBLIC_AUTH_MODE=clerk)
|
|
|
|
|
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
|
2026-02-04 02:28:51 +05:30
|
|
|
NEXT_PUBLIC_CLERK_SIGN_IN_FALLBACK_REDIRECT_URL=/boards
|
2026-02-09 01:06:33 +05:30
|
|
|
NEXT_PUBLIC_CLERK_AFTER_SIGN_OUT_URL=/
|