2025-03-15 13:37:56 +00:00
|
|
|
# PostgreSQL database credentials
|
|
|
|
POSTGRES_USER="your_postgres_user"
|
|
|
|
POSTGRES_PASSWORD="your_postgres_password"
|
|
|
|
POSTGRES_DB="your_postgres_db"
|
|
|
|
|
2025-03-06 08:58:53 +00:00
|
|
|
# The connection string for the PostgreSQL database
|
|
|
|
# Format: postgresql://username:password@hostname:port/database_name?schema=public
|
2025-03-15 13:37:56 +00:00
|
|
|
DATABASE_URL="postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}?schema=public"
|
2025-03-14 07:29:58 +00:00
|
|
|
|
2025-03-15 13:37:56 +00:00
|
|
|
# Secret key for authentication (generate a secure value)
|
|
|
|
AUTH_SECRET="your_auth_secret"
|
2025-03-14 07:29:58 +00:00
|
|
|
|
2025-03-15 13:37:56 +00:00
|
|
|
# GitHub OAuth client ID and GitHub OAuth client secret
|
|
|
|
AUTH_GITHUB_ID="your_github_client_id"
|
|
|
|
AUTH_GITHUB_SECRET="your_github_client_secret"
|
2025-03-14 07:29:58 +00:00
|
|
|
|
|
|
|
# The base URL for authentication callbacks, typically the root URL of your application
|
|
|
|
AUTH_URL="http://localhost:3000"
|
2025-03-25 13:57:52 +00:00
|
|
|
|
|
|
|
# OpenAI API key and base URL for AI services
|
|
|
|
OPENAI_API_KEY="your_openai_api_key"
|
|
|
|
OPENAI_BASE_URL="your_openai_base_url_if_custom"
|