You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
package config |
|
|
|
import ( |
|
"fmt" |
|
) |
|
|
|
// These are runtime-set values used for configuration. |
|
|
|
// DatabaseFilePath is the path to the file ot be used as the global database for this run of the application. |
|
var DatabaseFilePath = "data/owncast.db" |
|
|
|
// EnableDebugFeatures will print additional data to help in debugging. |
|
var EnableDebugFeatures = false |
|
|
|
// VersionNumber is the current version string. |
|
var VersionNumber = StaticVersionNumber |
|
|
|
// WebServerPort is the port for Owncast's webserver that is used for this execution of the service. |
|
var WebServerPort = 8080 |
|
|
|
// InternalHLSListenerPort is the port for HLS writes that is used for this execution of the service. |
|
var InternalHLSListenerPort = "8927" |
|
|
|
// ConfigFilePath is the path to the config file for migration. |
|
var ConfigFilePath = "config.yaml" |
|
|
|
// GitCommit is an optional commit this build was made from. |
|
var GitCommit = "" |
|
|
|
// BuildPlatform is the optional platform this release was built for. |
|
var BuildPlatform = "local" |
|
|
|
// GetReleaseString gets the version string. |
|
func GetReleaseString() string { |
|
var versionNumber = VersionNumber |
|
var buildPlatform = BuildPlatform |
|
var gitCommit = GitCommit |
|
|
|
return fmt.Sprintf("Owncast v%s-%s (%s)", versionNumber, buildPlatform, gitCommit) |
|
}
|
|
|