Fix port binding (#31)
All checks were successful
Game Ideas deploy / build-test-deploy (push) Successful in 1m47s

Reviewed-on: #31
This commit was merged in pull request #31.
This commit is contained in:
2025-04-28 21:06:37 +02:00
parent c12e31dfeb
commit 4c1c918bd6
3 changed files with 11 additions and 4 deletions

View File

@@ -10,12 +10,15 @@ public class GlobalConstants
public const string ADMINISTRATOR_NORMALIZED = "ADMINISTRATEUR";
public const string MEMBER = "Membre";
public const string MEMBER_NORMALIZED = "MEMBRE";
public const string ADMIN_MEMBER = $"{ADMINISTRATOR}, {MEMBER}";
public const string ADMIN_MEMBER = $"{ADMINISTRATOR}, {MEMBER}";
public const int JWT_DURATION_HOUR = 12;
public const int NUMBER_PER_PAGE = 50;
public const string LS_AUTH_STORAGE_KEY = "authToken";
public const int API_PORT = 8000;
public const string SUB_DOMAIN_NAME = "api-";
}