forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.cs
More file actions
15 lines (13 loc) · 651 Bytes
/
Copy pathConfig.cs
File metadata and controls
15 lines (13 loc) · 651 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
namespace ServiceStack.Server.Tests
{
public class Config
{
public const string ServiceStackBaseUri = "http://localhost:20000";
public const string AbsoluteBaseUri = ServiceStackBaseUri + "/";
public const string ListeningOn = ServiceStackBaseUri + "/";
public static readonly string RabbitMQConnString = Environment.GetEnvironmentVariable("CI_RABBITMQ") ?? "localhost";
public static readonly string SqlServerBuildDb = Environment.GetEnvironmentVariable("CI_SQLSERVER")
?? "Server=localhost;Database=test;User Id=test;Password=test;";
}
}