Skip to content

Commit

Permalink
fix: add configs in example config files
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisIsMani committed Dec 4, 2023
1 parent 9fb490b commit 4d01218
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions config/config.example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -477,3 +477,9 @@ connection_timeout = 10 # Timeout for database connection in seconds
[kv_config]
# TTL for KV in seconds
ttl = 900

[paypal_onboarding]
client_id = "paypal_client_id" # Client ID for PayPal onboarding
client_secret = "paypal_secret_key" # Secret key for PayPal onboarding
partner_id = "paypal_partner_id" # Partner ID for PayPal onboarding
enabled = true # Switch to enable or disable PayPal onboarding
6 changes: 6 additions & 0 deletions config/docker_compose.toml
Original file line number Diff line number Diff line change
Expand Up @@ -362,3 +362,9 @@ queue_strategy = "Fifo"

[kv_config]
ttl = 900 # 15 * 60 seconds

[connector_onboarding.paypal]
client_id = ""
client_secret = ""
partner_id = ""
enabled = true

0 comments on commit 4d01218

Please sign in to comment.