-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy path.config.test.json
More file actions
33 lines (33 loc) · 988 Bytes
/
.config.test.json
File metadata and controls
33 lines (33 loc) · 988 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
28
29
30
31
32
33
{
"environments": {
"test-with-api-v1-slash": {
"n8n_host": "https://n8n.example.com/api/v1/",
"n8n_api_key": "test_key_with_api_v1_slash"
},
"test-with-api-v1": {
"n8n_host": "https://n8n.example.com/api/v1",
"n8n_api_key": "test_key_with_api_v1"
},
"test-without-api-v1": {
"n8n_host": "https://n8n.example.com",
"n8n_api_key": "test_key_without_api_v1"
},
"test-with-trailing-slash": {
"n8n_host": "https://n8n.example.com/",
"n8n_api_key": "test_key_with_trailing_slash"
},
"test-with-double-slash": {
"n8n_host": "https://n8n.example.com//",
"n8n_api_key": "test_key_double_slash"
},
"test-localhost": {
"n8n_host": "http://localhost:5678",
"n8n_api_key": "test_key_localhost"
},
"test-localhost-api-v1": {
"n8n_host": "http://localhost:5678/api/v1",
"n8n_api_key": "test_key_localhost_api_v1"
}
},
"defaultEnv": "test-without-api-v1"
}