mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-13 18:57:18 +03:00
This is inline with other Subsonic compatible servers, like funkwhale, madsonic, ampache...
17 lines
279 B
Go
17 lines
279 B
Go
package consts
|
|
|
|
import "time"
|
|
|
|
const (
|
|
AppName = "navidrome"
|
|
|
|
LocalConfigFile = "./navidrome.toml"
|
|
InitialSetupFlagKey = "InitialSetup"
|
|
|
|
JWTSecretKey = "JWTSecret"
|
|
JWTIssuer = "ND"
|
|
JWTTokenExpiration = 30 * time.Minute
|
|
|
|
UIAssetsLocalPath = "ui/build"
|
|
)
|