-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.sample
More file actions
54 lines (45 loc) · 1 KB
/
.env.sample
File metadata and controls
54 lines (45 loc) · 1 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# ENV
NODE_ENV="development"
# LOGGER
DISCORD_WEBHOOK_URL=
LOG_LEVEL=info
# PostgreSQL
POSTGRES_USER=postgres
POSTGRES_PASSWORD=password
POSTGRES_DB=commitflow
DB_PORT=5432
# pgAdmin
PGADMIN_EMAIL=admin@example.com
PGADMIN_PASSWORD=admin123
ADMIN_PORT=8080
# Prisma (change db to localhost if not using docker)
DATABASE_URL=postgresql://postgres:password@db:5432/commitflow
# Backend
BE_PORT=8000
OPENAI_API_KEY=
BASE_URL=http://localhost:8000
FE_URL=http://localhost:3000
API_KEY=""
JWT_SECRET=""
# Github user or org
GITHUB_OWNER=
GITHUB_TOKEN=
# Frontend
FE_PORT=3000
VITE_API_URL="http://localhost:8000"
# S3 Storage
S3_BUCKET_NAME=
S3_REGION=
S3_ACCESS_KEY=
S3_SECRET_KEY=
# S3 COMPATIBLE STORAGE
S3_ENDPOINT_URL=
# Mail Server
EMAIL_ENABLED=true # set false untuk menonaktifkan pengiriman email
SMTP_HOST=host.docker.internal
SMTP_PORT=587
SMTP_USER=task@commitflow.space
SMTP_PASS=
SMTP_SECURE=false # true untuk SMTPS(465), false untuk STARTTLS (587)
FROM_NAME=CommitFlow
FROM_ADDRESS=task@commitflow.space