Initial commit mit MkDocs-Dokumentation
This commit is contained in:
76
.gitignore
vendored
Normal file
76
.gitignore
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
# ----------------------------
|
||||
# Dependencies
|
||||
# ----------------------------
|
||||
node_modules/
|
||||
backend/node_modules/
|
||||
frontend/node_modules/
|
||||
|
||||
# ----------------------------
|
||||
# Build artifacts / caches
|
||||
# ----------------------------
|
||||
frontend/dist/
|
||||
frontend/.vite/
|
||||
backend/dist/
|
||||
dist/
|
||||
build/
|
||||
.cache/
|
||||
coverage/
|
||||
*.tsbuildinfo
|
||||
|
||||
# ----------------------------
|
||||
# Runtime state / PIDs / temp
|
||||
# ----------------------------
|
||||
start.pid
|
||||
*.pid
|
||||
*.pid.lock
|
||||
tmp/
|
||||
temp/
|
||||
*.tmp
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# ----------------------------
|
||||
# Databases and generated data
|
||||
# ----------------------------
|
||||
backend/data/
|
||||
!backend/data/.gitkeep
|
||||
*.db
|
||||
*.db-wal
|
||||
*.db-shm
|
||||
|
||||
# ----------------------------
|
||||
# Logs/Debug
|
||||
# ----------------------------
|
||||
backend/logs/
|
||||
logs/
|
||||
*.log
|
||||
job*-hbscan.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
debug/
|
||||
# ----------------------------
|
||||
# Env / secrets (keep examples)
|
||||
# ----------------------------
|
||||
.env
|
||||
.env.*
|
||||
backend/.env
|
||||
backend/.env.*
|
||||
frontend/.env
|
||||
frontend/.env.*
|
||||
!.env.example
|
||||
!.env.sample
|
||||
!backend/.env.example
|
||||
!backend/.env.sample
|
||||
!frontend/.env.example
|
||||
!frontend/.env.sample
|
||||
|
||||
# ----------------------------
|
||||
# IDE / OS files
|
||||
# ----------------------------
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
.idea/
|
||||
.vscode/
|
||||
Reference in New Issue
Block a user