23 lines
711 B
Bash
23 lines
711 B
Bash
# Staffbase Plugin Configuration
|
|
STAFFBASE_PUBLIC_KEY="-----BEGIN PUBLIC KEY-----
|
|
<your Staffbase plugin public key here>
|
|
-----END PUBLIC KEY-----"
|
|
STAFFBASE_PLUGIN_SECRET=your_plugin_secret_here
|
|
|
|
# Database (Supabase)
|
|
DATABASE_URL=postgresql://postgres:[password]@db.[project-ref].supabase.co:5432/postgres
|
|
SUPABASE_URL=https://[project-ref].supabase.co
|
|
SUPABASE_SERVICE_ROLE_KEY=your_service_role_key_here
|
|
|
|
# football-data.org
|
|
FOOTBALL_API_KEY=your_football_data_api_key_here
|
|
FOOTBALL_API_BASE_URL=https://api.football-data.org/v4
|
|
|
|
# App Config
|
|
PORT=3001
|
|
NODE_ENV=development
|
|
CORS_ORIGIN=https://app.staffbase.com
|
|
|
|
# Plugin Base URL (where this backend is hosted)
|
|
PLUGIN_BASE_URL=https://your-app.railway.app
|