Converted the website service project into a reusable template.

This commit is contained in:
2026-07-11 16:20:33 +02:00
parent a4906f8f26
commit 4a8413359f
12 changed files with 296 additions and 38 deletions
@@ -8,9 +8,9 @@ extension String {
/// The default MySQL/MariaDB host.
public static let host = "localhost"
/// The default database name.
public static let name = "loud"
public static let name = "site"
/// The default database username.
public static let username = "loud"
public static let username = "site"
/// The default TLS posture token.
public static let tls = "prefer"
/// The TLS token disabling TLS.
@@ -47,6 +47,6 @@ extension String {
/// A namespace for the server string constants.
public enum Server {
/// The website server's name.
public static let name = "LoudWebsite"
public static let name = "SiteWebsite"
}
}