Files
sundol/.gitignore
joungmin 5d8b0fcdb8 Initial project setup with env template and gitignore
- .gitignore: Java/Maven, Node.js, IDE, OS, credentials
- .env.sample: backend + frontend environment variable template
- README.md: project overview and getting started guide
- CLAUDE.md: development rules and guidelines
- docs/: SUNDOL spec and design patterns guide

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-30 06:37:07 +00:00

70 lines
930 B
Plaintext

# ========================
# Environment / Secrets
# ========================
.env
.env.local
.env.production
.env.*.local
# ========================
# Java / Maven (Backend)
# ========================
target/
*.class
*.jar
*.war
*.ear
*.log
hs_err_pid*
# Maven wrapper
.mvn/wrapper/maven-wrapper.jar
# ========================
# Node.js (Frontend)
# ========================
node_modules/
.next/
out/
build/
dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# ========================
# IDE
# ========================
.idea/
*.iml
*.iws
.vscode/
*.swp
*.swo
*~
# ========================
# OS
# ========================
.DS_Store
Thumbs.db
# ========================
# OCI / Cloud credentials
# ========================
.oci/
Wallet_*/
*.pem
*.key
# ========================
# Docker
# ========================
oracle_data/
# ========================
# Claude Code
# ========================
.claude/