modified: main_dc/yalarba/api_es/.env

modified:   main_dc/yalarba/api_es/internal/config/config.go
set server port to 8088
This commit is contained in:
2025-11-12 12:53:39 +05:00
parent 0ae8ce7f45
commit 980c23ecdf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -9,4 +9,4 @@ JWT_SECRET=secret
UPLOAD_PATH=./storage/uploads
ENVIRONMENT=development
LOG_LEVEL=debug
APP_PORT=8081
APP_PORT=8088
@@ -30,7 +30,7 @@ func Load() *Config {
UploadPath: getEnv("UPLOAD_PATH", "./storage/uploads"),
LogLevel: getEnv("LOG_LEVEL", "debug"),
Environment: getEnv("ENVIRONMENT", "development"),
AppPort: getEnv("APP_PORT", "8081"),
AppPort: getEnv("APP_PORT", "8088"),
}
}