-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathnetlify.toml
More file actions
27 lines (24 loc) · 969 Bytes
/
netlify.toml
File metadata and controls
27 lines (24 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Development context: All deploys to the main
# repository branch will inherit these settings.
[build]
[build.environment]
# Effectively will be used for the development environment only
NODE_VERSION = "16"
REACT_APP_DOOR43_SERVER_URL = "https://qa.door43.org"
CYPRESS_CACHE_FOLDER = "./node_modules/CypressBinary"
[context.production]
[context.production.environment]
NODE_VERSION = "16"
REACT_APP_DOOR43_SERVER_URL = "https://git.door43.org"
CYPRESS_CACHE_FOLDER = "./node_modules/CypressBinary"
[context.stage]
# Allows QA with PROD data.
[context.stage.environment]
NODE_VERSION = "16"
REACT_APP_DOOR43_SERVER_URL = "https://git.door43.org"
CYPRESS_CACHE_FOLDER = "./node_modules/CypressBinary"
[context.deploy-preview]
[context.deploy-preview.environment]
NODE_VERSION = "16"
REACT_APP_DOOR43_SERVER_URL = "https://qa.door43.org"
CYPRESS_CACHE_FOLDER = "./node_modules/CypressBinary"