mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
d894b60fd4
Summary: Using standard tost notification, message about webhook queue being overflown was added. message is permanent as long as queue is full. Message contains linkt to the webhook setings Test Plan: two nbrowser test was added - one to check if message is show when queue is full, and second to check if message is dismiss when queue was cleaned. Reviewers: georgegevoian Reviewed By: georgegevoian Subscribers: jarek Differential Revision: https://phab.getgrist.com/D3929
48 lines
944 B
TOML
48 lines
944 B
TOML
app = "{APP_NAME}"
|
|
kill_signal = "SIGINT"
|
|
kill_timeout = 5
|
|
processes = []
|
|
|
|
[env]
|
|
APP_DOC_URL="https://{APP_NAME}.fly.dev"
|
|
APP_HOME_URL="https://{APP_NAME}.fly.dev"
|
|
APP_STATIC_URL="https://{APP_NAME}.fly.dev"
|
|
ALLOWED_WEBHOOK_DOMAINS="webhook.site"
|
|
GRIST_SINGLE_ORG="docs"
|
|
PORT = "8080"
|
|
FLY_DEPLOY_EXPIRATION = "{FLY_DEPLOY_EXPIRATION}"
|
|
|
|
[experimental]
|
|
allowed_public_ports = []
|
|
auto_rollback = true
|
|
|
|
[[services]]
|
|
http_checks = []
|
|
internal_port = 8080
|
|
processes = ["app"]
|
|
protocol = "tcp"
|
|
script_checks = []
|
|
[services.concurrency]
|
|
hard_limit = 25
|
|
soft_limit = 20
|
|
type = "connections"
|
|
|
|
[[services.ports]]
|
|
force_https = true
|
|
handlers = ["http"]
|
|
port = 80
|
|
|
|
[[services.ports]]
|
|
handlers = ["tls", "http"]
|
|
port = 443
|
|
|
|
[[services.tcp_checks]]
|
|
grace_period = "1s"
|
|
interval = "15s"
|
|
restart_limit = 0
|
|
timeout = "2s"
|
|
|
|
[mounts]
|
|
source="{VOLUME_NAME}"
|
|
destination="/persist"
|