feat(indexers): load custom definitions (#186)

This commit is contained in:
Ludvig Lundgren 2022-03-20 14:35:33 +01:00 committed by GitHub
parent 159133ef35
commit fdf69e6403
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 147 additions and 14 deletions

View file

@ -16,12 +16,13 @@ var Config domain.Config
func Defaults() domain.Config {
return domain.Config{
Host: "localhost",
Port: 8989,
LogLevel: "DEBUG",
LogPath: "",
BaseURL: "/",
SessionSecret: "secret-session-key",
Host: "localhost",
Port: 8989,
LogLevel: "TRACE",
LogPath: "",
BaseURL: "/",
SessionSecret: "secret-session-key",
CustomDefinitions: "",
}
}