File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ platform:
22
22
project : " demo"
23
23
24
24
# Enable sending command and queries history to the Postgres.ai Platform
25
- # for collaboration and visualization. By default: false .
26
- historyEnabled : false
25
+ # for collaboration and visualization. By default: true .
26
+ historyEnabled : true
27
27
28
28
# Channel Mapping section.
29
29
# Feel free to choose any name for Database Lab instances from the `dblabServers` section,
@@ -53,7 +53,7 @@ channelMapping:
53
53
# each time a new clone is created.
54
54
dblabParams :
55
55
dbname : postgres
56
- sslmode : disable
56
+ sslmode : prefer
57
57
58
58
# Slack communication type configuration.
59
59
slack :
@@ -81,7 +81,7 @@ channelMapping:
81
81
# each time a new clone is created.
82
82
dblabParams :
83
83
dbname : postgres
84
- sslmode : disable
84
+ sslmode : prefer
85
85
86
86
# Running Database Lab instances.
87
87
dblabServers :
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ type Platform struct {
34
34
URL string `env:"PLATFORM_URL" env-default:"https://postgres.ai/api/general"`
35
35
Token string `env:"PLATFORM_TOKEN"`
36
36
Project string `env:"PLATFORM_PROJECT"`
37
- HistoryEnabled bool `env:"HISTORY_ENABLED"`
37
+ HistoryEnabled bool `env:"HISTORY_ENABLED" env-default:"true" `
38
38
}
39
39
40
40
// ChannelMapping contains configuration parameters of communication types and Database Labs.
You can’t perform that action at this time.
0 commit comments