-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.test
21 lines (18 loc) · 1.15 KB
/
.env.test
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# NODE_ENV can only be 'development' or 'production'.
# If set other value, packaged resource would be difference between environment.
NODE_ENV = 'production'
# just a flag
VUE_APP_ENV = 'test'
# Whether application is running on docker
VUE_APP_RUN_ON_DOCKER = 'true'
# Backend server IP and port. It's required when the environment is development.
# Left blank if the environment is not development.
VUE_APP_BASE_URL = ''
# Base API. If app is deloyed on a public server, `localhost` should be the IP of the server.
# Because of deploying on a local machine (personal Mac or PC, etc.), the back-end server's IP is `localhost`,
# and the port is the exposed port of Docker container of back-end system.
VUE_APP_BASE_API = 'http://localhost:8080/exrx-net-crawler-server-stage'
# Resource base API for pictures, videos ect. If app is deloyed on a public server, `localhost` should be the IP of the server.
# Because of deploying on a local machine (personal Mac or PC, etc.), the back-end server's IP is `localhost`,
# and the port is the exposed port of Docker container of back-end system.
VUE_APP_RESOURCE_BASE_API = 'http://localhost:8080/exrx-net-crawler-server-stage'