This repository has been archived on 2023-06-30. You can view files and clone it, but cannot push or open issues or pull requests.
2chBackAPI/AuthInfo.cs
RakVhalate f3a5b28a99
All checks were successful
continuous-integration/drone/push Build is passing
no sec
2022-11-03 20:23:56 +10:00

23 lines
673 B
C#

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";
}
}
}