Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@ SG_SERVER_HOST=127.0.0.1
SG_SERVER_PORT=3000
SG_PROCESS_COUNT=1

# Public files path (optional)
# PUBLIC_WWW_PATH=./www

# Database
PG_DATABASE_URL=postgresql://postgres:password@localhost:5432/development

# Session Security (CHANGE IN PRODUCTION!)
COOKIE_SESSION_KEY=_spider_gazelle_
COOKIE_SESSION_SECRET=4f74c0b358d5bab4000dd3c75465dc2c

# Application URL (used for email links)
APP_BASE_URL=http://localhost:3000

# OAuth Providers (Optional)
# Get credentials from: https://console.developers.google.com
GOOGLE_CLIENT_ID=
Expand All @@ -24,3 +30,14 @@ MICROSOFT_CLIENT_SECRET=
# - 'organizations' for work/school accounts only
# - 'consumers' for personal Microsoft accounts only
# MICROSOFT_TENANT_ID=common

# SMTP Configuration (Required for email features)
SMTP_HOST=localhost
SMTP_PORT=1025
SMTP_FROM_EMAIL=noreply@example.com
SMTP_FROM_NAME="My App"
# TLS mode: starttls (default), smtps, or none
SMTP_TLS=none
# Auth credentials (required when TLS is enabled)
SMTP_USERNAME=
SMTP_PASSWORD=
Loading