mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 09:26:24 +00:00
57 lines
569 B
Plaintext
57 lines
569 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.iml
|
|
|
|
# Build artifacts
|
|
target/
|
|
build/
|
|
*.class
|
|
*.jar
|
|
*.war
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.swp
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Documentation (except prototype files)
|
|
docs/
|
|
*.md
|
|
!README.md
|
|
|
|
# Test files
|
|
test/
|
|
tests/
|
|
*.test.js
|
|
|
|
# CI/CD
|
|
.github/
|
|
.gitlab-ci.yml
|
|
Jenkinsfile
|
|
|
|
# Dependencies (will be installed in container)
|
|
node_modules/
|
|
vendor/
|
|
|
|
# Deployment files (except what we need)
|
|
deployment/*
|
|
!deployment/uiux/nginx.conf
|
|
|
|
# Keep only prototype HTML files
|
|
design/*
|
|
!design/uiux/prototype/*.html
|