2019-10-29 20:54:47 +00:00
|
|
|
package main
|
|
|
|
|
2020-05-02 05:06:39 +00:00
|
|
|
// OutputDir the output directory where the built version of Authelia is located.
|
2019-10-29 20:54:47 +00:00
|
|
|
var OutputDir = "dist"
|
|
|
|
|
2020-05-02 05:06:39 +00:00
|
|
|
// DockerImageName the official name of Authelia docker image.
|
2019-12-24 02:14:52 +00:00
|
|
|
var DockerImageName = "authelia/authelia"
|
2019-10-29 20:54:47 +00:00
|
|
|
|
2020-05-02 05:06:39 +00:00
|
|
|
// IntermediateDockerImageName local name of the docker image.
|
2019-10-29 20:54:47 +00:00
|
|
|
var IntermediateDockerImageName = "authelia:dist"
|
2020-05-02 16:20:40 +00:00
|
|
|
|
|
|
|
const masterTag = "master"
|
|
|
|
const stringFalse = "false"
|
|
|
|
const stringTrue = "true"
|
2021-01-03 04:28:46 +00:00
|
|
|
const swaggerDirectory = "public_html/api"
|
2020-05-02 16:20:40 +00:00
|
|
|
const webDirectory = "web"
|