diff --git a/.gitignore b/.gitignore index 5a504a3..dbb0a96 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ obj bin -dist -AuthInfo.cs \ No newline at end of file +dist \ No newline at end of file diff --git a/AuthInfo.cs b/AuthInfo.cs new file mode 100644 index 0000000..bb96164 --- /dev/null +++ b/AuthInfo.cs @@ -0,0 +1,22 @@ +namespace NeDvachAPI +{ + public class AuthInfo + { + public class MinIo + { + public static string endpoint = "static.vdk2ch.ru:15555"; + public static string bucketName = "thread-pics"; + public static string username = "admin"; + public static string password = "password2ch"; + } + + public class DB + { + public static string Host = "postgres.vdk2ch.ru"; + public static string User = "postgres"; + public static string DBname = "postgres"; + public static string Password = "postgres"; + public static string Port = "5432"; + } + } +}