-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (35 loc) · 1.35 KB
/
.env.example
File metadata and controls
43 lines (35 loc) · 1.35 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
SPRING_PROFILES_ACTIVE=local
SERVER_PORT=8080
DB_URL=jdbc:oracle:thin:@localhost:1521/XEPDB1
DB_USERNAME=ansimdonghaeng
DB_PASSWORD=change-me
# Required for local/dev/prod startup. Use a sufficiently long random secret.
JWT_SECRET=replace-with-a-long-random-secret-value
JWT_ISSUER=ansimdonghaeng
JWT_ACCESS_TOKEN_EXPIRATION_MINUTES=60
JWT_REFRESH_TOKEN_EXPIRATION_MINUTES=10080
CORS_ALLOWED_ORIGINS=http://localhost:5173,http://127.0.0.1:5173,http://localhost:3000,http://127.0.0.1:3000
WEBSOCKET_ENDPOINT=/ws
KAKAO_USER_INFO_URI=https://kapi.kakao.com/v2/user/me
KAKAO_TOKEN_URI=https://kauth.kakao.com/oauth/token
KAKAO_REST_API_KEY=your-kakao-rest-api-key
KAKAO_CLIENT_SECRET=your-kakao-client-secret
KAKAO_REDIRECT_URI=http://localhost:5173/login/kakao/callback
KAKAO_CONNECT_TIMEOUT_MILLIS=3000
KAKAO_RESPONSE_TIMEOUT_MILLIS=5000
AI_BASE_URL=https://example.invalid
AI_CONNECT_TIMEOUT_MILLIS=3000
AI_RESPONSE_TIMEOUT_MILLIS=5000
FILE_STORAGE_BASE_DIR=./storage/local
MULTIPART_MAX_FILE_SIZE=20MB
MULTIPART_MAX_REQUEST_SIZE=25MB
# Password Reset Configuration
PASSWORD_RESET_TOKEN_EXPIRATION_MINUTES=10
PASSWORD_RESET_URL_BASE=http://localhost:5173/reset-password
# Mail Configuration
MAIL_ENABLED=false
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME=your-email@example.com
MAIL_PASSWORD=your-email-password-or-app-password
MAIL_FROM=no-reply@ansimdonghaeng.com