-
Notifications
You must be signed in to change notification settings - Fork 0
/
env.example
28 lines (22 loc) · 1.12 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
DEV_FRONTEND_URL=http://localhost:3000
FRONTEND_URL=https://test.com
# base64 encoded string
JWT_SECRET=5a3ba5ad6a28cd2f0974af17f315c1d2b88fa07c08663ddbcad47a7ed19284fe
# length of time you would like the JWT to be active for (in hours; integer)
JWT_HOURS_ACTIVE=4
# SKIP_AUTH must be a boolean in lowercase
SKIP_AUTH=true
# MODE must be either dev or prod
MODE=dev
# DATABASE_URL should be created automatically when `cargo run`
# or `cargo build` is executed. The important thing is that the
# crate builds. At that point, the bash script is ran and creates
# the DATABASE_URL env var for you. If for whatever reason you
# cannot build the crate, it's probably because of this variable
# here. postgres://root:root@[IP Address]:5440/webservice_tutorial should be
# the value of the variable. You replace the [IP Address] with
# the output of this command: `ipconfig | grep inet`. You then
# should choose an ipv4 to replace the [IP Address] with. Make
# sure to remove the brackets too. You may have to try several
# different ip addresses to get this to work. You will know it's
# working when the crate compiles after running `cargo run`.