-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBackendConfig.cs
26 lines (26 loc) · 1.37 KB
/
BackendConfig.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
namespace CustomBeatmaps
{
/// <summary>
/// Backend config file, not for users to mess with unless they're testing their own backend.
/// </summary>
public class BackendConfig
{
/// Grabs list of all package files
public string ServerPackageList = "http://64.225.60.116:8080/packages.json";
/// Grabs list of all submissions currently pending
public string ServerSubmissionList = "http://64.225.60.116:8080/submissions.json";
/// Grabs all high scores
public string ServerHighScores = "http://64.225.60.116:8080/highscores.json";
public string ServerLowScores = "http://64.225.60.116:8080/lowscores.json";
/// The directory for all server data
public string ServerStorageURL = "http://64.225.60.116:8080";
/// The root folder within the server directory
public string ServerPackageRoot = "packages";
/// Where we grab user data from
public string ServerUserURL = "http://64.225.60.116:8081";
// Grabs the latest project tag from GitHub
public string RepoLatestTagsURL = "https://api.github.com/repos/TacoDogUnbeatableThing/CustomBeatmapsV3/tags?per_page=1";
public string DownloadLatestReleaseLink = "https://github.com/TacoDogUnbeatableThing/CustomBeatmapsV3/releases";
public string DiscordInviteLink = "https://discord.gg/TfZF7Vxv8S";
}
}