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.
24 lines
805 B
24 lines
805 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.11" // Shown when you build from develop |
|
// WebRoot is the web server root directory. |
|
WebRoot = "webroot" |
|
// FfmpegSuggestedVersion is the version of ffmpeg we suggest. |
|
FfmpegSuggestedVersion = "v4.1.5" // Requires the v |
|
// DataDirectory is the directory we save data to. |
|
DataDirectory = "data" |
|
// EmojiDir is relative to the webroot. |
|
EmojiDir = "/img/emoji" |
|
) |
|
|
|
var ( |
|
// BackupDirectory is the directory we write backup files to. |
|
BackupDirectory = filepath.Join(DataDirectory, "backup") |
|
|
|
// HLSStoragePath is the directory HLS video is written to. |
|
HLSStoragePath = filepath.Join(DataDirectory, "hls") |
|
)
|
|
|