-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
54 lines (40 loc) · 1.9 KB
/
.env.example
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
###########################################################
################## Application Setup ######################
###########################################################
REACT_APP_ENV=development
REACT_APP_API_BASE_URL=https://your-api.ml.com
REACT_APP_API_CONTENT_TYPE_HEADER=application/json
REACT_APP_API_ACCEPT_HEADER=application/json
REACT_APP_API_RESULT_LIMIT=4
REACT_APP_LOCALE=en-US
REACT_APP_CURRENCY=$
REACT_APP_PORT=3000
REACT_APP_STORYBOOK_PORT=9009
###########################################################
###################### General Setup ######################
###########################################################
### Paths #################################################
# Point to the path of your applications code on your host
APP_CODE_PATH_HOST=.
# Point to where the `APP_CODE_PATH_HOST` should be in the container
APP_CODE_PATH_CONTAINER=/app
# You may add flags to the path `:cached`, `:delegated`. When using Docker Sync add `:nocopy`
APP_CODE_CONTAINER_FLAG=:cached
# Choose storage path on your machine. For all storage systems
DATA_PATH_HOST=~/.your-app-name/data
### Drivers ################################################
# All volumes driver
VOLUMES_DRIVER=local
# All Networks driver
NETWORKS_DRIVER=bridge
### Docker compose files ##################################
# Select which docker-compose files to include. If using docker-sync append `:docker-compose.sync.yml` at the end
COMPOSE_FILE=docker-compose.yml
# Change the separator from : to ; on Windows
COMPOSE_PATH_SEPARATOR=:
# Define the prefix of container names. This is useful if you have multiple projects that use node-challenge to have seperate containers per project.
COMPOSE_PROJECT_NAME=your-app-name
###########################################################
################ Containers Customization #################
###########################################################
DOCKER_FILE=Dockerfile.dev