-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (31 loc) · 1.01 KB
/
.env.example
File metadata and controls
37 lines (31 loc) · 1.01 KB
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
37
#==========================================
# DATABASE CONFIGURATION
DB_HOST=localhost
DB_PORT=5432
DB_NAME=LabSyncDb
DB_USER=postgres
DB_PASSWORD=your_postgres_password_here
# ============================================
# PGADMIN CONFIGURATION
PGADMIN_EMAIL=admin@labsync.com
PGADMIN_PASSWORD=admin123
PGADMIN_PORT=8080
# ============================================
# JWT AUTHENTICATION
Jwt__Key="minimum_32_characters_long_secret_key_here"
Jwt__Issuer="LabSyncServer"
Jwt__Audience="LabSyncAgent"
# ============================================
# SERVER CONFIGURATION
ASPNETCORE_ENVIRONMENT=Development
ASPNETCORE_URLS=http://localhost:5038;https://localhost:5001;https://localhost:5000
# ============================================
# CORS SETTINGS
CORS_ALLOWED_ORIGINS=http://localhost:3000;http://localhost:4173
# ============================================
# AGENT CONFIGURATION
AGENT_SERVER_URL=http://localhost:5038
# ============================================
# DATABASE SEEDING
SEED_DATA=false
SEED_DATA_DELETE=false