Initial commit carried over from private repo. This is V2.
This commit is contained in:
@ -0,0 +1,20 @@
|
||||
namespace MessengerApi.Configuration
|
||||
{
|
||||
public static partial class Constants
|
||||
{
|
||||
public static class EnvironmentVariables
|
||||
{
|
||||
public const string SQL_CONNECTIONSTRING = nameof(SQL_CONNECTIONSTRING);
|
||||
public const string NPG_CONNECTIONSTRING = nameof(NPG_CONNECTIONSTRING);
|
||||
public const string PERSISTENCE_TYPE = nameof(PERSISTENCE_TYPE);
|
||||
public const string CORS_ORIGINS = nameof(CORS_ORIGINS);
|
||||
public const string PROXIES = nameof(PROXIES);
|
||||
public const string QUERY_RATE_PER_MINUTE = nameof(QUERY_RATE_PER_MINUTE);
|
||||
public const string DEFAULT_MESSAGE_LIFETIME_IN_MINUTES = nameof(DEFAULT_MESSAGE_LIFETIME_IN_MINUTES);
|
||||
public const string HOUSEKEEPING_ENABLED = nameof(HOUSEKEEPING_ENABLED);
|
||||
public const string HOUSEKEEPING_MESSAGE_AGE_IN_MINUTES = nameof(HOUSEKEEPING_MESSAGE_AGE_IN_MINUTES);
|
||||
public const string HOUSEKEEPING_MESSAGE_STATE = nameof(HOUSEKEEPING_MESSAGE_STATE);
|
||||
public const string LOGGING_VERBOSITY = nameof(LOGGING_VERBOSITY);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user