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.
25 lines
1011 B
25 lines
1011 B
package config |
|
|
|
import "path/filepath" |
|
|
|
const ( |
|
// StaticVersionNumber is the version of Owncast that is used when it's not overwritten via build-time settings. |
|
StaticVersionNumber = "0.0.6" // Shown when you build from master |
|
// WebRoot is the web server root directory. |
|
WebRoot = "webroot" |
|
// PrivateHLSStoragePath is the HLS write directory. |
|
PrivateHLSStoragePath = "hls" |
|
// ExtraInfoFile is the markdown file for page content. Remove this after the migrator is removed. |
|
ExtraInfoFile = "data/content.md" |
|
// StatsFile is the json file we used to save stats in. Remove this after the migrator is removed. |
|
StatsFile = "data/stats.json" |
|
// FfmpegSuggestedVersion is the version of ffmpeg we suggest. |
|
FfmpegSuggestedVersion = "v4.1.5" // Requires the v |
|
// BackupDirectory is the directory we write backup files to. |
|
BackupDirectory = "backup" |
|
) |
|
|
|
var ( |
|
// PublicHLSStoragePath is the directory we write public HLS files to for distribution. |
|
PublicHLSStoragePath = filepath.Join(WebRoot, "hls") |
|
)
|
|
|