We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f03b70e commit 5ca49e6Copy full SHA for 5ca49e6
internal/app/config.go
@@ -19,10 +19,9 @@ func NewConfig() (*Config, error) {
19
debugEnabled, _ := strconv.ParseBool(os.Getenv("APP_DEBUG_ENABLED"))
20
21
cfg := Config{
22
- DebugEnabled: debugEnabled,
23
- AwsConsoleURL: os.Getenv("APP_AWS_CONSOLE_URL"),
24
- SlackToken: os.Getenv("APP_SLACK_TOKEN"),
25
- SlackChannel: os.Getenv("APP_SLACK_CHANNEL"),
+ DebugEnabled: debugEnabled,
+ SlackToken: os.Getenv("APP_SLACK_TOKEN"),
+ SlackChannel: os.Getenv("APP_SLACK_CHANNEL"),
26
}
27
28
missing := []string{}
0 commit comments