22 lines
848 B
C#
22 lines
848 B
C#
namespace Server.System
|
|
{
|
|
public static class STATICS
|
|
{
|
|
#region Dev
|
|
#if DEBUG
|
|
public static readonly string SQL_URL = "Host=myHost;Port=myPort;Username=myUsername;Password=myPassword;Database=myDatabase;";
|
|
public static readonly string EXCEL_SQL_URL = "Host=192.168.0.2;Port=5432;Username=manager;Password=BQNl01bJJF0wn9R;Database=project_thewar;";
|
|
#endif
|
|
#endregion
|
|
|
|
//비공계 프로젝트의 경우 아래와같이 작성해주세요
|
|
//"https://username:password@www.example.com/";
|
|
public static readonly string remoteUrl = "https://manager:BQNl01bJJF0wn9R@gitea.pandoli365.com/Team.thewar/thewar_excel.git";
|
|
|
|
public static readonly string URL = "https://0.0.0.0:4860";
|
|
|
|
public static readonly string PATTERN = "[^a-zA-Z0-9가-힣 ]";
|
|
}
|
|
|
|
}
|