forked from BlogBowl/BlogBowl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (26 loc) · 739 Bytes
/
.env.example
File metadata and controls
32 lines (26 loc) · 739 Bytes
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
29
30
31
32
# Database
DB_USERNAME=
DB_PASSWORD=
DB_HOST=
DB_PORT=
# Domain where all blogs will be hosted under. E.g. example.com -> blog.example.com
BASE_DOMAIN=
# S3 bucket - (optional, but recommended. Used for storing images of posts. If not specified we store it to disk.)
S3_ACCESS_KEY_ID=
S3_SECRET_ACCESS_KEY=
S3_ENDPOINT=
S3_REGION=
S3_BUCKET=
# Postmark - (optional, used for sending newlsetters)
POSTMARK_ACCOUNT_TOKEN=
POSTMARK_X_API_KEY=
# SMTP - (used to send test emails, you can use Postmark for that as well)
SMPT_ADDRESS=
SMTP_PORT=
SMTP_DOMAIN=
SMTP_USER_NAME=
SMTP_PASSWORD=
SMTP_AUTHENTICATION=
SMTP_ENABLE_STARTTLS_AUTO=
# If you want to change port, default is 3000. You'd need to update docker compose as well.
PORT=3000