Pipeline/frontend/.env.example

21 lines
846 B
Plaintext
Raw Permalink Normal View History

# Base URL for frontend -> backend calls.
# Use `auto` to target the same host currently serving Mission Control on port 8001.
# Example explicit override: https://mc.example.com
NEXT_PUBLIC_API_URL=auto
# Auth mode: clerk or local.
# - clerk: Clerk sign-in flow
2026-05-19 22:28:34 -05:00
# - local: shared bearer token, entered in UI or pre-set via env
NEXT_PUBLIC_AUTH_MODE=local
2026-05-19 22:28:34 -05:00
# Local auth token (used when NEXT_PUBLIC_AUTH_MODE=local).
# When set: the app loads directly without showing the login screen.
# When unset: users are prompted to enter their token on first load.
# Must be at least 50 characters and match LOCAL_AUTH_TOKEN on the backend.
NEXT_PUBLIC_LOCAL_AUTH_TOKEN=
# 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=/