-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.example
More file actions
30 lines (24 loc) · 825 Bytes
/
.env.example
File metadata and controls
30 lines (24 loc) · 825 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
27
28
29
30
# Database Configuration
SPRING_DATASOURCE_URL=jdbc:postgresql://your-db-host:5432/your-database
SPRING_DATASOURCE_USERNAME=your-username
SPRING_DATASOURCE_PASSWORD=your-password
# JWT Configuration
JWT_SECRET=your-secret-key-here-minimum-256-bits
JWT_EXPIRATION=86400000
# Email Configuration (Gmail)
SPRING_MAIL_HOST=smtp.gmail.com
SPRING_MAIL_PORT=587
SPRING_MAIL_USERNAME=your-email@gmail.com
SPRING_MAIL_PASSWORD=your-app-password
# Admin Credentials
ADMIN_USERNAME=admin@example.com
ADMIN_PASSWORD=admin123
ADMIN_EMAIL=admin@example.com
# Application URL
APP_URL=http://localhost:8080
# OpenRouter Configuration
OPENROUTER_API_KEY=your-openrouter-api-key
OPENROUTER_API_URL=https://openrouter.ai/api/v1/chat/completions
OPENROUTER_MODEL=google/gemini-2.0-flash-exp:free
# Chatbot Test Mode
CHATBOT_TEST_MODE=true