namespace Server.System
{
    public static class STATICS
    {
        #region Dev 
        #if DEBUG
        public static readonly string SQL_URL = "Server=myServerAddress;Port=myPort;Database=myDatabase;Uid=myUsername;Pwd=myPassword;";
#endif
        #endregion

        //비공계 프로젝트의 경우 아래와같이 작성해주세요
        //"https://username:password@gitea.pandoli365.com/pandoli365/gittest.git";
        public static readonly string remoteUrl = "https://gitea.pandoli365.com/pandoli365/gittest.git";


        public static readonly string PATTERN = "[^a-zA-Z0-9가-힣 ]";
    }

}