-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.env.example
26 lines (20 loc) · 881 Bytes
/
.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
# -----------------------------------------------------------------------------
# SQLite Database Connection URL
# -----------------------------------------------------------------------------
DATABASE_URL=sqlite://sqlite.db
# -----------------------------------------------------------------------------
# JSON Web Token
# -----------------------------------------------------------------------------
JWT_SECRET=my_ultra_secure_secret
JWT_EXPIRED_IN=60m
JWT_MAXAGE=60
# -----------------------------------------------------------------------------
# Email (Postmark || Any SMTP Provider)
# -----------------------------------------------------------------------------
SMTP_HOST=your_smtp_hostname_here
SMTP_PORT=2525
SMTP_USER=your_smtp_username_here
SMTP_PASS=your_smtp_password_here
FRONTEND_ORIGIN=http://localhost:3000