Skip to content

Commit d84d590

Browse files
authored
Create .env.example
1 parent ac2aa14 commit d84d590

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.env.example

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# .env
2+
ENVIRONMENT=Production
3+
4+
# PostgreSQL Connection
5+
POSTGRES_HOST=postgres
6+
POSTGRES_PORT=5432
7+
POSTGRES_DB=Contacts
8+
POSTGRES_USER=sa
9+
POSTGRES_PASSWORD=PasYourPassword123
10+
11+
# JWT Settings
12+
JWT_SECRET=THIS USED TO SIGN AND VERIFY JWT TOKENS, REPLACE IT WITH YOUR OWN SECRET, IT CAN BE ANY STRING
13+
JWT_ISSUER=http://localhost:8000
14+
JWT_AUDIENCE=http://localhost:8000
15+
PASSWORD_RESET_URL=http://localhost/reset-password/
16+
17+
# SMTP Settings
18+
SMTP_SERVER=smtp.office365.com
19+
SMTP_PORT=587
20+
SMTP_USERNAME=xxxxxxxx@hotmail.com
21+
SMTP_PASSWORD=xxxxxx
22+
SMTP_FROM_EMAIL=xxxxxxxx@hotmail.com
23+
SMTP_ENABLE_SSL=true

0 commit comments

Comments
 (0)