We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f63a1f8 commit f087c5aCopy full SHA for f087c5a
1 file changed
microservices/skill-assessment-service/.env.example
@@ -0,0 +1,29 @@
1
+# Service Configuration
2
+SERVICE_NAME=skill-assessment-service
3
+SERVICE_HOST=localhost
4
+SERVICE_PORT=3015
5
+NODE_ENV=development
6
+
7
+# Database Configuration
8
+DB_HOST=localhost
9
+DB_PORT=5432
10
+DB_NAME=skill_assessment_db
11
+DB_USER=postgres
12
+DB_PASSWORD=password
13
+DB_SYNC=true
14
15
+# Assessment Configuration
16
+INITIAL_DIFFICULTY=1
17
+MAX_DIFFICULTY=10
18
+MIN_DIFFICULTY=1
19
+DIFFICULTY_ADJUSTMENT_THRESHOLD=0.7
20
+REASSESSMENT_INTERVAL_DAYS=30
21
22
+# Tier Configuration
23
+TIER_BRONZE_THRESHOLD=30
24
+TIER_SILVER_THRESHOLD=50
25
+TIER_GOLD_THRESHOLD=70
26
+TIER_PLATINUM_THRESHOLD=85
27
+TIER_DIAMOND_THRESHOLD=95
28
29
+LOG_LEVEL=log
0 commit comments