-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (20 loc) · 949 Bytes
/
Copy path.env.example
File metadata and controls
26 lines (20 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Database Configuration
DATABASE_PASSWORD=your_secure_password
# Domain Configuration
# For development: localhost
# For production: your actual domain (e.g., yourdomain.com)
DOMAIN=localhost
# Frontend Configuration
# For development with Caddy reverse proxy
FRONTEND_ORIGINS=http://localhost,https://localhost,http://yourdomain.com,https://yourdomain.com
# API base URL - Caddy handles routing, so use the main domain
VITE_API_BASE_URL=http://localhost # For development, https://yourdomain.com for production
OLLAMA_API_BASE_URL=http://localhost:11434
# Environment (development or production)
ENVIRONMENT=development
# JWT Configuration - Generate secure keys for production!
JWT_SECRET_KEY=dev_secret_key_change_in_production
JWT_REFRESH_SECRET_KEY=dev_refresh_secret_key_change_in_production
# PgAdmin Configuration (optional - uncomment to enable)
PGADMIN_DEFAULT_EMAIL=admin@example.com
PGADMIN_DEFAULT_PASSWORD=your_admin_password