generated from wolfpackthatcodes/vite-typescript-package-toolkit
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
37 lines (29 loc) · 1.32 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
#--------------------------------------------------------------------------
# If you want to change the container name, network name or
# the source code folder, you can create a DotEnv file
# and override the Docker Compose variables.
#
# You can run the following command in the terminal
# to create your DotEnv file.
#
# cp .env.example .env
#--------------------------------------------------------------------------
#--------------------------------------------------------------------------
# Container env
#--------------------------------------------------------------------------
# The project name. | default: http-client
APP_NAME="http-client"
# The Vite app container name. | default: http-client_app
APP_CONTAINER_NAME="${APP_NAME}_app"
#--------------------------------------------------------------------------
# Network env
#--------------------------------------------------------------------------
# Map the app container exposed port to the host port. | default: 51204
APP_PORT=51204
# The Docker network for the container. | default: http-client_local
NETWORK_NAME="${APP_NAME}_local"
#--------------------------------------------------------------------------
# Volume env
#--------------------------------------------------------------------------
# The project source code directory. | default: /code
CODE_DIR=/code