Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Type
/
to search
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
TeamPiKi
/
core
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
5
Code
Issues
42
Pull requests
0
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Files
Expand file tree
dev
Breadcrumbs
core
/
.env.example
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
44 lines (37 loc) · 2 KB
dev
Breadcrumbs
core
/
.env.example
Copy path
Top
File metadata and controls
Code
Blame
44 lines (37 loc) · 2 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
# 로컬 개발용 환경변수 — 이 파일을 복사해 .env 를 만들고 값을 채워주세요
# cp .env.example .env
# 상품 파싱(링크·이미지)의 유일 경로인 원격 추출 서비스(extractor) 주소.
# 비면 부팅이 실패한다. 로컬은 extractor 를 함께 띄우고(기본 포트 8090) 아래 값을 그대로 쓴다.
EXTRACT_REMOTE_BASE_URL=http://localhost:8090
# DB (운영 dev RDS 의 실제 endpoint / username 은 팀 vault / 1Password 에서 받기)
DB_HOST=your-db-host-here
DB_PORT=3306
DB_NAME=your-db-name-here
DB_USERNAME=your-db-username-here
DB_PASSWORD=your-db-password-here
# JWT — 운영 키와 다른 로컬 dummy. HS256 최소 32 bytes 필요.
# 본인이 더 안전하게 하려면 openssl rand -base64 48 로 생성한 값으로 교체 가능.
JWT_SECRET=local-dev-jwt-secret-must-be-at-least-32-chars!
# Redis (로컬 docker-compose 또는 brew services start redis)
REDIS_HOST=localhost
REDIS_PORT=6379
# 토큰 쿠키 Secure 속성. 로컬은 HTTP 라 false 로 둬야 브라우저가 쿠키를 전송한다.
# 운영(HTTPS)은 true (application.yml 기본값). 줄 끝 인라인 주석 금지 — 값만 둔다.
COOKIE_SECURE=false
# OAuth — 실 호출은 epic #122 (https://github.com/TeamPiKi/core/issues/122) 의
# Task 6 시점부터. 그 전까진 빈 값으로 둬도 부팅 영향 없음.
KAKAO_CLIENT_ID=
KAKAO_CLIENT_SECRET=
KAKAO_REDIRECT_URI=
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
GOOGLE_REDIRECT_URI=
# Grafana Cloud — EC2 의 Grafana Alloy 수집기가 메트릭·로그를 remote-write 할 때만 쓴다.
# 로컬 개발엔 불필요(빈 값이면 배포 시 Alloy 기동 자체를 skip). 운영은 GitHub Actions secret 으로 주입.
# token 1개를 metrics·logs 가 공유하고, URL·USER 는 Prometheus / Loki 가 각각 다르다.
# (GC 발급 구조가 token 을 분리한다면 token 을 2종으로 늘리면 됨 — config.alloy 의 password 만 분리.)
GRAFANA_METRICS_URL=
GRAFANA_METRICS_USER=
GRAFANA_LOGS_URL=
GRAFANA_LOGS_USER=
GRAFANA_CLOUD_TOKEN=
You can’t perform that action at this time.