-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
22 lines (17 loc) · 637 Bytes
/
Copy path.env
File metadata and controls
22 lines (17 loc) · 637 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Setting your own variable, and copy to .env.local file
PORT = 8080
JWT_SECRET = "your custom secret key"
SENDGRID_API_KEY='your api key'
SENDGRID_EMAIL_FROM= no-reply@example.com
SENDGRID_TEMPLATE_PASSWORD_RESET = d-92dd043dfacc4e75a6f01cf025bb82d2
SENDGRID_TEMPLATE_CONFIRM_ACCOUNT = d-21085c520b404c9ba78c8c99a68ff081
SENDGRID_TEMPLATE_EMPLOYEE_INVITATION = d-21085c520b404c9ba78c8c99a68ff081
SUPERADMIN_USER = user
SUPERADMIN_EMAIL = user@email.com
SUPERADMIN_PASSWORD = password
# Database Config
DB_HOST = "localhost"
DB_USER = "your db username"
DB_PASSWORD = "your db password"
DB_DB = "your db name"
DB_DIALECT = "mysql"