meldestelle/.gitignore
Stefan Mogeritsch 76307ec798 docs: add Gitea Actions caching guide and update .gitignore
Added a detailed guide on enabling caching for Gitea Actions to accelerate CI/CD workflows in `docs/01_Architecture/Gitea/Enable_Gitea_Actions_Cache_to_Accelerate_CI_CD.md`. Updated `.gitignore` to exclude the `/_backup/` directory.
2026-02-09 13:13:17 +01:00

74 lines
884 B
Plaintext

# --- General ---
.gradle/
**/build/
**/out/
.kotlin/
kotlin-js-store/
# --- Environments ---
#.env
config/env/.env.local
.env.development.local
.env.test.local
.env.production.local
.env.local
# --- IDEs ---
# IntelliJ
.idea/
*.iml
*.ipr
*.iws
# VS Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/snippets
# Fleet
.fleet/
!.fleet/receipt.json
# --- Dependencies & Build ---
node_modules/
**/node_modules/
package-lock.json
yarn.lock
pnpm-lock.yaml
# --- OS Files ---
.DS_Store
Thumbs.db
*.swp
*~
.nfs*
# --- Logs ---
_backup/logs/
**/*.log
*.log.gz
# --- Languages & Runtimes ---
# Java/Kotlin
*.class
.attach_pid*
# Python
.venv/
venv/
ENV/
*.pyc
__pycache__/
# --- Quality & Documentation ---
build/diagrams/
.eslintcache
.stylelintcache
.phpunit.result.cache
.dataSources/
dataSources.local.xml
/_backup/