Skip to content

Commit cc7e9f0

Browse files
committed
Upgrade urfavre cli to v3
1 parent 3db7420 commit cc7e9f0

11 files changed

Lines changed: 783 additions & 464 deletions

File tree

server/config_example.toml

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Specify the port number for the server application to run on.
22
port = 8080
33

4+
# Specify the address on which the server listens
5+
address = ""
6+
47
# Set the log level for the server
58
log-level = "INFO"
69

@@ -28,6 +31,15 @@ key = ""
2831
# Set the connection string for the PostgreSQL database.
2932
database = "postgres://admin:supersecret@localhost:5432/scrumlr?sslmode=disable"
3033

34+
# Set the database host name for the PsotgreSQL database
35+
database-host = ""
36+
37+
# Set the database username for the PostgreSQL database
38+
database-username = ""
39+
40+
# Set the database password for the PostgreSQL database
41+
database-password = ""
42+
3143
# Define the base path for the application.
3244
base-path = "/"
3345

@@ -40,6 +52,9 @@ allow-anonymous-custom-templates = false
4052
# Enable/Disable the board creation for anonymous clients
4153
allow-anonymous-board-creation = true
4254

55+
# Enable/Disable history for anonymous clients
56+
allow-anonymous-history = false
57+
4358
# enables/disables experimental file system store, in order to allow larger session cookie sizes
4459
auth-experimental-file-system-store = false
4560

@@ -94,6 +109,15 @@ auth-oidc-user-ident-scope = ""
94109
# Set the JWT scope to request from the IDP for user name information.
95110
auth-oidc-user-name-scope = ""
96111

112+
# Set the session secret for the authentication providers
113+
session-secret = ""
114+
115+
# Set the OTel grpc endpoint for sending logs, traces and metrics
116+
otel-grpc = ""
117+
118+
# Set the OTel http endpoint for sending logs, traces and metrics
119+
otel-http = ""
120+
97121
# Enable or disable verbose logging.
98122
verbose = true
99123

@@ -103,6 +127,5 @@ disable-check-origin = true
103127
# Specify the URL for the feedback webhook.
104128
feedback-webhook-url = ""
105129

106-
# Sepcify the OTel endpoint for sending logs, traces and metrics
107-
otel-grpc = ""
108-
otel-http = ""
130+
# Enable/Disable the swagger page
131+
enable-swagger = false

0 commit comments

Comments
 (0)