-
Notifications
You must be signed in to change notification settings - Fork 6
/
.env.defaults
56 lines (48 loc) · 1.07 KB
/
.env.defaults
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#
# General
#
# Node environment
#
# Available:
# - production
# - development
NODE_ENV=development
# Region configuration to load
#
# Each configuration is loaded from src/config/<region> and overwrites defaults
# in /src/config/default.
#
# Available regions:
# - berlin
# - aachen
# - eichwalde
REGION=berlin
# Select backend to connect to
#
# Backend URLs are configured in each region's configuration and in the
# default configuration in src/config/default/base.ts
#
# Available configurations for default region 'berlin':
# - production
# - staging
# - local
BACKEND=staging
# Alternatively, you can set an API-URL directly
#
#API_URL=
#
# Cypress Integration Testing
#
# Credentials for integration tests that use login
#
# These are needed to run some integration tests. These credentials need to be
# configured for the backend selected through the `BACKEND` env var.
#
CYPRESS_USERNAME=
CYPRESS_PASSWORD=
# Sets Cypress Chrome browser window size & position
#
# CYPRESS_BROWSER_WINDOW=1920,1080;1920,0
CYPRESS_BROWSER_WINDOW=
# Removes ads during `npm install`
ADBLOCK=true