mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
be0cc72473
* [CI] Add goconst linter * Implement goconst recommendations * Rename defaultPolicy to denyPolicy * Change order for test constants Co-authored-by: Clément Michaud <clement.michaud34@gmail.com>
16 lines
448 B
Go
16 lines
448 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 webDirectory = "web"
|