-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
62 lines (37 loc) · 1.6 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
55
56
57
58
59
60
61
62
# PRODUCTION SETTINGS
# The port that requests: From the internet -> To your router -> Forwarded to your server, are sent to.
# Example: "https://[ROUTER-WAN-IP-ADDRESS]:{PORT}"
NODE_SERVER_PORT = 8080
# You must configure your router to forward this specific port
# and set the destination LAN IPv4 address to one of your server's LAN IPv4 addresses.
# The same LAN IPv4 address set as the destination in your specific port settings.
# (or "0.0.0.0" for any)
NODE_SERVER_HOST = 0.0.0.0
# The URL the site is being served to during production.
# A domain can be used instead of [IP:PORT]
NODE_SERVER_ORIGIN = http://x.x.x.x:8080
# PRODUCTION SETTINGS
# LAN SETTINGS
HOST_LAN_IPv4 = 192.168.x.x
# DEVELOPMENT SETTINGS
# This will host the site on the LAN at the specified port
# when `npm run dev` is entered in the terminal.
DEV_PORT = 4522
# This port should NOT be forwarded.
# The protocol (http or https) used for accessing the site during development.
DEV_PROTOCOL = http
# DEVELOPMENT SETTINGS
# PREVIEW SETTINGS
# This will host the site on the LAN at the specified port
# when `npm run preview` is entered in the terminal.
PREV_PORT = 4523
# This port should NOT be forwarded.
# The protocol (http or https) used for accessing the site during preview.
PREV_PROTOCOL = http
# PREVIEW SETTINGS
# LAN SETTINGS
# EMAIL SETTINGS
# Email account information
EMAIL_USER = [email protected]
EMAIL_PASS = xxxx xxxx xxxx xxxx
# EMAIL SETTINGS