-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
60 lines (49 loc) · 1.8 KB
/
.env.example
File metadata and controls
60 lines (49 loc) · 1.8 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
55
56
57
58
59
60
# Application Configuration
APP_JWT_SECRET=your-jwt-secret-key-here
APP_JWT_ISSUER=your-jwt-issuer
APP_COOKIE_DOMAIN=localhost
APP_FRONTEND_BASE_URL=http://localhost:3000
APP_BACKEND_BASE_URL=http://localhost:8080
SPRING_PROFILES_ACTIVE=local
SESSION_COOKIE_DOMAIN=localhost
# CORS Configuration
ALLOWED_ORIGINS=http://localhost:3000,http://localhost:8080
# Database Configuration
MYSQL_URL=jdbc:mysql://localhost:3306/konect?useSSL=false&serverTimezone=Asia/Seoul&characterEncoding=UTF-8
MYSQL_PORT=3306
MYSQL_DATABASE=konect
MYSQL_ROOT_PASSWORD=your-mysql-root-password
MYSQL_USERNAME=your-mysql-username
MYSQL_PASSWORD=your-mysql-password
MYSQL_READONLY_USERNAME=konect_readonly
MYSQL_READONLY_PASSWORD=your-readonly-password
# Redis Configuration
REDIS_HOST=localhost
REDIS_PORT=6379
# AWS S3 Configuration
STORAGE_S3_BUCKET=your-s3-bucket-name
STORAGE_S3_REGION=ap-northeast-2
STORAGE_CDN_BASE_URL=https://your-cdn-url.com
# OAuth2 - Google
OAUTH_GOOGLE_CLIENT_ID=your-google-client-id
OAUTH_GOOGLE_CLIENT_SECRET=your-google-client-secret
# OAuth2 - Naver
OAUTH_NAVER_CLIENT_ID=your-naver-client-id
OAUTH_NAVER_CLIENT_SECRET=your-naver-client-secret
# OAuth2 - Kakao
OAUTH_KAKAO_CLIENT_ID=your-kakao-client-id
OAUTH_KAKAO_CLIENT_SECRET=your-kakao-client-secret
# OAuth2 - Apple
OAUTH_APPLE_TEAM_ID=your-apple-team-id
OAUTH_APPLE_CLIENT_ID=your-apple-client-id
OAUTH_APPLE_KEY_ID=your-apple-key-id
OAUTH_APPLE_PRIVATE_KEY_PATH=/path/to/apple/private/key.p8
# Slack Configuration
SLACK_SIGNING_SECRET=your-slack-signing-secret
SLACK_WEBHOOK_ERROR=https://hooks.slack.com/services/YOUR/WEBHOOK/URL
SLACK_WEBHOOK_EVENT=https://hooks.slack.com/services/YOUR/WEBHOOK/URL
# Claude AI Configuration
CLAUDE_API_KEY=your-claude-api-key
CLAUDE_MODEL=claude-sonnet-4-20250514
# MCP Bridge Configuration
MCP_BRIDGE_URL=http://localhost:3100