tgstation-server  4.4.0
The /tg/station 13 server suite
UpdatesConfiguration.cs
Go to the documentation of this file.
1 namespace Tgstation.Server.Host.Configuration
2 {
6  public sealed class UpdatesConfiguration
7  {
11  public const string Section = "Updates";
12 
16  const long DefaultGitHubRepositoryId = 92952846;
17 
21  const string DefaultGitTagPrefix = "tgstation-server-v";
22 
26  const string DefaultUpdatePackageAssetName = "ServerUpdatePackage.zip";
27 
31  public long GitHubRepositoryId { get; set; } = DefaultGitHubRepositoryId;
32 
36  public string GitTagPrefix { get; set; } = DefaultGitTagPrefix;
37 
41  public string UpdatePackageAssetName { get; set; } = DefaultUpdatePackageAssetName;
42  }
43 }
Configuration for the automatic update system