64 lines
617 B
Plaintext
64 lines
617 B
Plaintext
# IDE - VSCode
|
|
.vscode/
|
|
*.code-workspace
|
|
.history/
|
|
|
|
# IDE - IntelliJ IDEA
|
|
.idea/
|
|
*.iml
|
|
*.iws
|
|
*.ipr
|
|
|
|
# Maven
|
|
target/
|
|
*.war
|
|
*.jar
|
|
*.ear
|
|
.classpath
|
|
.project
|
|
.settings/
|
|
|
|
# Node.js
|
|
node_modules/
|
|
dist/
|
|
.cache/
|
|
.yarn/cache
|
|
.yarn/unplugged
|
|
.yarn/build-state.yml
|
|
.yarn/install-state.gz
|
|
.pnp.*
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Editor directories and files
|
|
.idea
|
|
.vscode
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# Build output
|
|
backend/target/
|
|
frontend/dist/
|
|
frontend/dist-ssr/
|
|
|
|
# Cursor
|
|
.cursor/
|
|
.cursorrules |