From f3a5b28a9967feb0ea40a0dd4fc39950239586c4 Mon Sep 17 00:00:00 2001 From: RakVhalate Date: Thu, 3 Nov 2022 20:23:56 +1000 Subject: [PATCH] no sec --- .gitignore | 3 +-- AuthInfo.cs | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 AuthInfo.cs 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"; + } + } +}