Mhamdans17 commited on
Commit ·
b7c8860
1
Parent(s): 57eec2d
fix: hardcode store name to XOGM Go to override hugging face env variables
Browse files- config/config.go +1 -1
config/config.go
CHANGED
|
@@ -48,7 +48,7 @@ func LoadConfig() {
|
|
| 48 |
JWTSecretKey: getEnv("JWT_SECRET_KEY", "default-secret-key-change-me"),
|
| 49 |
JWTExpiryHours: getEnvInt("JWT_EXPIRY_HOURS", 24),
|
| 50 |
FonnteToken: getEnv("FONNTE_TOKEN", ""),
|
| 51 |
-
StoreName:
|
| 52 |
CloudinaryCloudName: getEnv("CLOUDINARY_CLOUD_NAME", ""),
|
| 53 |
CloudinaryAPIKey: getEnv("CLOUDINARY_API_KEY", ""),
|
| 54 |
CloudinaryAPISecret: getEnv("CLOUDINARY_API_SECRET", ""),
|
|
|
|
| 48 |
JWTSecretKey: getEnv("JWT_SECRET_KEY", "default-secret-key-change-me"),
|
| 49 |
JWTExpiryHours: getEnvInt("JWT_EXPIRY_HOURS", 24),
|
| 50 |
FonnteToken: getEnv("FONNTE_TOKEN", ""),
|
| 51 |
+
StoreName: "XOGM Go", // Hardcoded to override old env variables
|
| 52 |
CloudinaryCloudName: getEnv("CLOUDINARY_CLOUD_NAME", ""),
|
| 53 |
CloudinaryAPIKey: getEnv("CLOUDINARY_API_KEY", ""),
|
| 54 |
CloudinaryAPISecret: getEnv("CLOUDINARY_API_SECRET", ""),
|