Skip to content

Commit 8e3710c

Browse files
committed
chore: update .env.sample and README with mail server configuration
- Added SMTP_USER and FROM_ADDRESS to .env.sample for email configuration. - Updated README to include mail server settings for better setup guidance.
1 parent 7a76a95 commit 8e3710c

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.env.sample

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ S3_ENDPOINT_URL=
4646
# Mail Server
4747
SMTP_HOST=host.docker.internal
4848
SMTP_PORT=587
49-
SMTP_USER=
49+
5050
SMTP_PASS=
5151
SMTP_SECURE=false # true untuk SMTPS(465), false untuk STARTTLS (587)
5252
FROM_NAME=CommitFlow
53-
FROM_ADDRESS=
53+
FROM_ADDRESS=[email protected]

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,15 @@ S3_ACCESS_KEY=
224224
S3_SECRET_KEY=
225225
# S3 COMPATIBLE STORAGE
226226
S3_ENDPOINT_URL=
227+
228+
# Mail Server
229+
SMTP_HOST=host.docker.internal
230+
SMTP_PORT=587
231+
232+
SMTP_PASS=
233+
SMTP_SECURE=false # true for SMTPS(465), false for STARTTLS (587)
234+
FROM_NAME=CommitFlow
235+
227236
```
228237

229238
> **Note:** Use `db` as the PostgreSQL host inside Docker (not `localhost`).

0 commit comments

Comments
 (0)