30 lines
848 B
Bash
30 lines
848 B
Bash
# Domain
|
|
# This would be set to the production domain with an env var on deployment
|
|
DOMAIN=localhost
|
|
|
|
# FRONTEND_HOST=http://localhost:5173
|
|
|
|
# Environment: local, staging, production
|
|
ENVIRONMENT=local
|
|
|
|
PROJECT_NAME="FastAPI Supabase Template"
|
|
|
|
# Backend
|
|
BACKEND_CORS_ORIGINS="http://localhost"
|
|
SECRET_KEY=local_dev
|
|
FIRST_SUPERUSER=admin@example.com
|
|
FIRST_SUPERUSER_PASSWORD=admin12345
|
|
|
|
# run `supabase status`
|
|
# API URL
|
|
SUPABASE_URL=http://127.0.0.1:54321
|
|
# service_role key
|
|
SUPABASE_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6InNlcnZpY2Vfcm9sZSIsImV4cCI6MTk4MzgxMjk5Nn0.EGIM96RAZx35lJzdJsyH-qQwv8Hdp7fsn3W0YpN81IU
|
|
|
|
# Postgres
|
|
# DB URL: postgresql://postgres:postgres@localhost:54322/postgres
|
|
POSTGRES_SERVER=localhost
|
|
POSTGRES_PORT=54322
|
|
POSTGRES_DB=postgres
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|