-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
35 lines (29 loc) · 982 Bytes
/
env.example
File metadata and controls
35 lines (29 loc) · 982 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
# Environment Variables Configuration
# Copy this file to .env and update the values as needed
#
# ⚠️ IMPORTANT SECURITY WARNING:
# - This is a template file with example values
# - NEVER use default values in production
# - Always change passwords and secrets
# - You are responsible for securing your deployment
# - The original creator is not liable for security issues
# Database Configuration
DB_USERNAME=sa
DB_PASSWORD=your_secure_password_here
# H2 Console Configuration (set to true only for development)
H2_CONSOLE_ENABLED=false
# Logging Configuration
LOG_LEVEL=INFO
SPRING_WEB_LOG_LEVEL=WARN
HIBERNATE_SQL_LOG_LEVEL=WARN
HIBERNATE_BINDER_LOG_LEVEL=WARN
# Management Endpoints Configuration
MANAGEMENT_ENDPOINTS=health
HEALTH_SHOW_DETAILS=when-authorized
# Security Configuration
# Add your security-related environment variables here
# JWT_SECRET=your_jwt_secret_here
# API_RATE_LIMIT=100
# Application Configuration
SERVER_PORT=8080
SPRING_PROFILES_ACTIVE=dev