-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.opensync.yml
More file actions
47 lines (40 loc) · 1012 Bytes
/
.opensync.yml
File metadata and controls
47 lines (40 loc) · 1012 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# .opensync.yml — Public repo에 포함할 파일 allowlist
# 여기에 없으면 public에 절대 안 올라감.
# 새 기능 추가 시 이 파일에 명시적으로 등록해야 공개됨.
allow:
# RAG module
- "rag/**"
# Infrastructure (Discord bot, automation, MCP)
- "infra/**"
# Setup wizards
- "scripts/setup_rag.py"
- "scripts/setup_infra.py"
- "scripts/opensync.py"
# Claude Code 설정 dotfiles (행동 원칙 + 스킬 + 훅)
- "dotfiles/claude/**"
# Documentation
- "docs/img/**"
- "README.md"
- "README.ko.md"
- "LICENSE"
- "CLAUDE.md"
# Configuration
- ".gitignore"
- ".gitleaks.toml"
- ".githooks/**"
- ".github/**"
- ".opensync.yml"
- "private/README.md"
# allowlist 안에서도 추가로 제외할 패턴
deny:
- "**/.env"
- "**/.env.*"
- "!**/.env.example"
- "**/secrets/**"
- "**/personas.json"
- "**/token*.json"
- "**/*personal*"
- "**/node_modules/**"
- "**/package-lock.json"
- "**/__pycache__/**"
- "**/*.pyc"