-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (33 loc) · 1.13 KB
/
.env.example
File metadata and controls
40 lines (33 loc) · 1.13 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
# Database Configuration
DB_NAME=ndie
DB_USER=ndie
DB_PASSWORD=ndiepass
DB_ROOT_PASSWORD=ndieroot
# AWS S3 Configuration
AWS_S3_ACCESS_KEY=YOUR_AWS_ACCESS_KEY
AWS_S3_SECRET_KEY=YOUR_AWS_SECRET_KEY
AWS_S3_REGION=ap-northeast-2
AWS_S3_BUCKET=ndie-backend-bucket
# Spring Configuration
SPRING_JPA_HIBERNATE_DDL_AUTO=update
# JWT Secret (generate a strong random secret)
SPRING_JWT_SECRET=your_jwt_secret_here
# Email Configuration
SPRING_MAIL_HOST=smtp.gmail.com
SPRING_MAIL_PORT=587
SPRING_MAIL_USERNAME=your_email@gmail.com
SPRING_MAIL_PASSWORD=your_app_password
NDIE_MAIL_DISABLE_SEND=false
# OAuth2 Kakao Configuration
KAKAO_CLIENT_ID=your_kakao_client_id
KAKAO_CLIENT_SECRET=your_kakao_client_secret
KAKAO_REDIRECT_URI=http://localhost:8080/login/oauth2/code/kakao
# Frontend Configuration
NEXT_PUBLIC_API_BASE=http://localhost:8080
NEXT_PUBLIC_KAKAO_BASE=http://localhost:8080/oauth2/authorization/kakao
NEXT_PUBLIC_BROWSER_API_BASE=http://localhost:8080
NEXT_INTERNAL_API_BASE=http://backend:8080
NDIE_FRONTEND_LOGIN_SUCCESS_URL=http://localhost:3000/login/success
# Grafana Configuration
GRAFANA_ADMIN_USER=admin
GRAFANA_ADMIN_PASSWORD=admin