-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env_example
More file actions
22 lines (18 loc) · 828 Bytes
/
.env_example
File metadata and controls
22 lines (18 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# ==============================================================================
# This is an example environment configuration file. You can create your own
# .env implementation or pass them via the CLI.
#
# You could also decide to supply some of your environment variables from a .env
# file, and others via the CLI. This allows you to easily store "safe"
# environment variables within this file, and then manage your more sensitive
# environment variables separately.
# ==============================================================================
# Enable SSR?
SSR_ENABLED=true
# The host on which to run the server.
SERVER_HOST=0.0.0.0
# The port on which to run the server.
SERVER_PORT=1337
# The port on which to run the client bundle dev server (i.e. used during
# development only).
CLIENT_DEVSERVER_PORT=7331