79 lines
2.2 KiB
TOML
79 lines
2.2 KiB
TOML
[build]
|
|
[build.environment]
|
|
# REACT_APP_SENTRY_DSN=
|
|
# REACT_APP_SENTRY_ENVIRONMENT=
|
|
# REACT_APP_SENTRY_RELEASE=
|
|
# REACT_APP_HOTJAR_HJID=
|
|
# REACT_APP_HOTJAR_HJSV=
|
|
# REACT_APP_OAUTH2_GOOGLE_CLIENT_ID=
|
|
# REACT_APP_OAUTH2_GITHUB_CLIENT_ID=
|
|
# REACT_APP_SEGMENT_KEY=
|
|
# REACT_APP_MARKETPLACE_URL=
|
|
# REACT_APP_OPTIMIZELY_KEY=
|
|
# REACT_APP_ALGOLIA_API_ID=
|
|
# REACT_APP_ALGOLIA_API_KEY=
|
|
# REACT_APP_ALGOLIA_SEARCH_INDEX_NAME=
|
|
REACT_APP_CLIENT_LOG_LEVEL="debug"
|
|
# REACT_APP_GOOGLE_MAPS_API_KEY=
|
|
|
|
[context.production]
|
|
[context.production.environment]
|
|
REACT_APP_ENVIRONMENT = "PRODUCTION"
|
|
REACT_APP_BASE_URL = "https://api.appsmith.com"
|
|
APP_HOST = "app.appsmith.com"
|
|
|
|
[context.release]
|
|
[context.release.environment]
|
|
REACT_APP_ENVIRONMENT = "STAGING"
|
|
REACT_APP_BASE_URL = "https://release-api.appsmith.com"
|
|
APP_HOST = "release.app.appsmith.com"
|
|
|
|
[context.deploy-preview]
|
|
[context.deploy-preview.environment]
|
|
REACT_APP_ENVIRONMENT = "STAGING"
|
|
REACT_APP_BASE_URL = "https://release-api.appsmith.com"
|
|
# Not adding an APP_HOST here because the URL is dynamic in nature and cannot be determined.
|
|
|
|
[context.develop]
|
|
[context.develop.environment]
|
|
REACT_APP_ENVIRONMENT = "STAGING"
|
|
REACT_APP_BASE_URL = "https://release-api.appsmith.com"
|
|
APP_HOST = "develop.app.appsmith.com"
|
|
|
|
[[headers]]
|
|
for = "/static/*"
|
|
[header.values]
|
|
cache-control = "max-age=604800"
|
|
|
|
[[redirects]]
|
|
from = "/api/*"
|
|
to = "API_PLACEHOLDER/api/:splat"
|
|
status = 200
|
|
force = true
|
|
headers = { X-Forwarded-Host = "APP_HOST_PLACEHOLDER", X-Forwarded-Proto = "https" }
|
|
|
|
[[redirects]]
|
|
from = "/oauth2/*"
|
|
to = "API_PLACEHOLDER/oauth2/:splat"
|
|
status = 200
|
|
force = true
|
|
headers = { X-Forwarded-Host = "APP_HOST_PLACEHOLDER", X-Forwarded-Proto = "https" }
|
|
|
|
[[redirects]]
|
|
from = "/login/*"
|
|
to = "API_PLACEHOLDER/login/:splat"
|
|
status = 200
|
|
force = true
|
|
headers = { X-Forwarded-Host = "APP_HOST_PLACEHOLDER", X-Forwarded-Proto = "https" }
|
|
|
|
[[redirects]]
|
|
from = "/f/*"
|
|
to = "https://cdn.optimizely.com/:splat"
|
|
status = 200
|
|
force = true
|
|
|
|
# This must be the last redirect in the chain because it's a catch-all
|
|
[[redirects]]
|
|
from = "/*"
|
|
to = "/index.html"
|
|
status = 200 |