Signed-off-by: Max <ai-agent@topdoglabs.com>

This commit is contained in:
Max 2026-02-24 20:21:54 -06:00
parent 718683748a
commit 75aef25ba3
2 changed files with 18 additions and 0 deletions

16
.env.example Normal file
View File

@ -0,0 +1,16 @@
# Gantt Board Environment Variables
# Copy to .env.local for local development.
# Supabase core config
NEXT_PUBLIC_SUPABASE_URL=https://your-project-ref.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-public-key-here
SUPABASE_SERVICE_ROLE_KEY=your-service-role-secret-key-here
# Optional: machine-to-machine API auth (for Mission Control / other services)
# If set, API routes can authenticate with:
# - Authorization: Bearer <GANTT_MACHINE_TOKEN>
# - or x-gantt-machine-token: <GANTT_MACHINE_TOKEN>
GANTT_MACHINE_TOKEN=
GANTT_MACHINE_USER_ID=machine-service-user
GANTT_MACHINE_USER_NAME=Mission Control Service
GANTT_MACHINE_USER_EMAIL=mission-control@internal.local

2
.gitignore vendored
View File

@ -35,6 +35,8 @@ yarn-error.log*
# env files (can opt-in for committing if needed)
.env*
!.env.example
!.env.local.example
# vercel
.vercel