-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
17 lines (13 loc) · 786 Bytes
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Server Configuration
APP_HOST=0.0.0.0 # Host IP address
APP_PORT=8080 # Server port
# Logging Configuration
RUST_LOG=debug # Logging level (e.g., error, warn, info, debug, trace)
RUST_BACKTRACE=1 # Enable backtrace: 0 (off), 1 (minimal), full (detail
# Database Configuration
DB_NAME=actixdb # The name of the database (default: actixdb for development)
DB_USER=dev_user # Username for the database
DB_PASS=dev_password123 # Password for the database user (use a secure password)
# Database Host and Port
DB_HOST=localhost # The database host (use 'actix-db' in Docker network or 'localhost' for local development)
DB_PORT=5433 # The database port (default: 5432 for PostgreSQL)