mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
942fc96225
Summary: Added boilerplate code needed to create new wigets in "Add new" menu, that are wrapped around existing custom widgets. More details can be found here: https://grist.quip.com/larhAGRKyl6Z/Custom-widgets-in-Add-Widget-menu Test Plan: nbowser tests added to verify if item in menu exits, if widget is rendered, and right side menu has widget selection and read access selection hided. Reviewers: georgegevoian Reviewed By: georgegevoian Differential Revision: https://phab.getgrist.com/D3994
50 lines
1005 B
TOML
50 lines
1005 B
TOML
app = "{APP_NAME}"
|
|
primary_region = "ewr"
|
|
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"
|
|
PERMITTED_CUSTOM_WIDGETS="calendar"
|
|
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"
|