15 lines
521 B
Plaintext
15 lines
521 B
Plaintext
# 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
|
|
|
|
# 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=
|
|
NEXT_PUBLIC_CLERK_SIGN_IN_FALLBACK_REDIRECT_URL=/boards
|
|
NEXT_PUBLIC_CLERK_AFTER_SIGN_OUT_URL=/
|