-
Notifications
You must be signed in to change notification settings - Fork 16
/
netlify.toml
23 lines (20 loc) · 1.27 KB
/
netlify.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Production context: all deploys from the Production branch set in your site's deploy contexts will inherit these settings.
[context.production.environment]
GOOGLE_ANALYTICS_ID = "G-7DSTL89K69"
SENTRY_DSN = "https://[email protected]/5257787"
ENVIRONMENT = "FE_Production"
# Specific branch context: all deploys from this specific branch will inherit these settings.
[context.staging.environment] # 'staging' is a branch
GOOGLE_ANALYTICS_ID = "G-9HFRD1796B"
SENTRY_DSN = "https://[email protected]/5257787"
ENVIRONMENT = "FE_Staging"
# Deploy preview context: all deploys generated from a pull/merge request will inherit these settings.
[context.deploy-preview.environment]
GOOGLE_ANALYTICS_ID = "G-9HFRD1796B"
SENTRY_DSN = "https://[email protected]/5257787"
ENVIRONMENT = "FE_Deploy-preview"
# Branch deploy context: all deploys that are not from a pull/merge request or from the Production branch will inherit these settings.
[context.branch-deploy.environment]
GOOGLE_ANALYTICS_ID = "G-9HFRD1796B"
SENTRY_DSN = "https://[email protected]/5257787"
ENVIRONMENT = "FE_Branch-deploy"