d7c3991b59
* Render and sanitize chat messages server-side. Closes #235 * Render content.md server-side and return it in the client config * Remove showdown from web project * Update api spec * Move example user content file
15 lines
273 B
Go
15 lines
273 B
Go
package config
|
|
|
|
import "path/filepath"
|
|
|
|
const (
|
|
WebRoot = "webroot"
|
|
PrivateHLSStoragePath = "hls"
|
|
GeoIPDatabasePath = "data/GeoLite2-City.mmdb"
|
|
ExtraInfoFile = "data/content.md"
|
|
)
|
|
|
|
var (
|
|
PublicHLSStoragePath = filepath.Join(WebRoot, "hls")
|
|
)
|