-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (23 loc) · 867 Bytes
/
.env.example
File metadata and controls
30 lines (23 loc) · 867 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
# MandalGraph 환경 변수 예시
# 이 파일을 참고하여 각 폴더에 .env 파일을 생성하세요
# .env 파일은 Git에 업로드되지 않습니다
# ============================================
# Backend (backend/.env)
# ============================================
# Neo4j Database
NEO4J_URI=bolt://localhost:7687
NEO4J_USERNAME=neo4j
NEO4J_PASSWORD=your_password_here
# Server
SERVER_PORT=8080
# JWT Secret (향후 인증 구현 시 사용)
JWT_SECRET=your-super-secret-key-change-in-production
# AWS (향후 배포 시 사용)
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_REGION=ap-northeast-2
# ============================================
# Frontend (frontend/.env)
# ============================================
# API 서버 URL (개발: http://localhost:8080, 프로덕션: https://api.yourdomain.com)
VITE_API_URL=http://localhost:8080