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

25 lines
691 B
C#
Raw Permalink Normal View History

2022-11-03 20:23:56 +10:00
namespace NeDvachAPI
{
public class AuthInfo
{
public class MinIo
{
public static string endpoint = "static.vdk2ch.ru:15555";
2022-12-07 19:55:18 +10:00
public static string bucketName = "thread-pics thread-pics-small";
2022-11-03 20:23:56 +10:00
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";
2022-11-18 14:46:31 +10:00
public static string DBname = "dvaach";
2022-11-03 20:23:56 +10:00
public static string Password = "postgres";
public static string Port = "5432";
}
2022-11-18 14:46:31 +10:00
2022-11-03 20:23:56 +10:00
}
}