17 lines
491 B
Go
17 lines
491 B
Go
package main
|
|
|
|
// OutputDir the output directory where the built version of Authelia is located.
|
|
var OutputDir = "dist"
|
|
|
|
// DockerImageName the official name of Authelia docker image.
|
|
var DockerImageName = "authelia/authelia"
|
|
|
|
// IntermediateDockerImageName local name of the docker image.
|
|
var IntermediateDockerImageName = "authelia:dist"
|
|
|
|
const masterTag = "master"
|
|
const stringFalse = "false"
|
|
const stringTrue = "true"
|
|
const swaggerDirectory = "public_html/api"
|
|
const webDirectory = "web"
|