by Robin at 20240524

This commit is contained in:
Leufolium 2024-05-24 04:09:24 +08:00
parent c2c8125b5f
commit b8a9b7e66b
1 changed files with 4 additions and 2 deletions

View File

@ -87,13 +87,15 @@ const (
const PackageRootPath = "/app/wishpal-ironfan" const PackageRootPath = "/app/wishpal-ironfan"
const OfflinePackageRootPath = "/app/wishpal-ironfan-offline"
const MainConfigPath = PackageRootPath + "/etc/mix/mix-test.yaml" const MainConfigPath = PackageRootPath + "/etc/mix/mix-test.yaml"
const MainOfflineConfigPath = PackageRootPath + "/etc/mix/mix-test-offline.yaml" const MainOfflineConfigPath = OfflinePackageRootPath + "/etc/mix/mix-test-offline.yaml"
const ProductionConfigPath = PackageRootPath + "/etc/mix/mix-prod.yaml" const ProductionConfigPath = PackageRootPath + "/etc/mix/mix-prod.yaml"
const ProductionOfflineConfigPath = PackageRootPath + "/etc/mix/mix-prod-offline.yaml" const ProductionOfflineConfigPath = OfflinePackageRootPath + "/etc/mix/mix-prod-offline.yaml"
const LocalConfigPath = "C:/Users/PC/Desktop/service/etc/mix/mix-local.yaml" const LocalConfigPath = "C:/Users/PC/Desktop/service/etc/mix/mix-local.yaml"