- Add YarpGateway.slnx solution file - Move all project files to src/ directory - Update Dockerfile for new src/ path structure - Update CI/CD workflow with src/ project path - Fix NuGet package references (use Gitea NuGet packages) - Add CPM (Central Package Management) with Directory.Packages.props
9 lines
258 B
C#
9 lines
258 B
C#
namespace YarpGateway.Config;
|
|
|
|
public class RedisConfig
|
|
{
|
|
public string ConnectionString { get; set; } = "81.68.223.70:16379,password=sl52788542";
|
|
public int Database { get; set; } = 0;
|
|
public string InstanceName { get; set; } = "YarpGateway";
|
|
}
|