-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (29 loc) · 991 Bytes
/
.env.example
File metadata and controls
36 lines (29 loc) · 991 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
31
32
33
34
35
36
# Database Configuration (using localhost instead of docker container names)
DB_HOST=localhost
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=password
DB_NAME=maxit
# Application Configuration
APP_PORT=8000
# File Storage Configuration (using localhost)
FILE_STORAGE_HOST=localhost
FILE_STORAGE_PORT=8888
# Queue Configuration (RabbitMQ - using localhost)
QUEUE_NAME=worker_queue
RESPONSE_QUEUE_NAME=worker_response_queue
QUEUE_HOST=localhost
QUEUE_PORT=5672
QUEUE_USER=guest
QUEUE_PASSWORD=guest
# JWT Secret Key
JWT_SECRET_KEY=your-super-secret-jwt-key-here-make-it-long-and-secure
# CORS Configuration (optional - defaults provided)
# CORS_ALLOWED_ORIGINS=* (allows all origins)
# For specific origins use comma-separated list: http://localhost:3000,http://localhost:5173
CORS_ALLOWED_ORIGINS=http://localhost:3000,http://localhost:5173
# CORS_ALLOW_CREDENTIALS=true (set to "true" to allow credentials)
CORS_ALLOW_CREDENTIALS=true
LOG_DIR=logs
# Enable development dump data
DUMP=true