summaryrefslogtreecommitdiffstats
path: root/server/src/Data/Static/AppEnvironmentVariables.cs
blob: a734146c5c691fd0f45de6e3ea40abdafa411148 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
namespace IOL.GreatOffice.Api.Data.Static;

public static class AppEnvironmentVariables
{
	public const string DB_HOST = "DB_HOST";
	public const string DB_PORT = "DB_PORT";
	public const string DB_USER = "DB_USER";
	public const string DB_PASSWORD = "DB_PASSWORD";
	public const string DB_NAME = "DB_NAME";
	public const string QUARTZ_DB_HOST = "QUARTZ_DB_HOST";
	public const string QUARTZ_DB_PORT = "QUARTZ_DB_PORT";
	public const string QUARTZ_DB_USER = "QUARTZ_DB_USER";
	public const string QUARTZ_DB_PASSWORD = "QUARTZ_DB_PASSWORD";
	public const string QUARTZ_DB_NAME = "QUARTZ_DB_NAME";
	public const string SEQ_API_KEY = "SEQ_API_KEY";
	public const string SEQ_API_URL = "SEQ_API_URL";
	public const string SMTP_HOST = "SMTP_HOST";
	public const string SMTP_PORT = "SMTP_PORT";
	public const string SMTP_USER = "SMTP_USER";
	public const string SMTP_PASSWORD = "SMTP_PASSWORD";
	public const string EMAIL_FROM_ADDRESS = "EMAIL_FROM_ADDRESS";
	public const string EMAIL_FROM_DISPLAY_NAME = "EMAIL_FROM_DISPLAY_NAME";
	public const string ACCOUNTS_URL = "ACCOUNTS_URL";
	public const string GITHUB_CLIENT_ID = "GH_CLIENT_ID";
	public const string GITHUB_CLIENT_SECRET = "GH_CLIENT_SECRET";
	public const string APP_AES_KEY = "APP_AES_KEY";
}