Version : 2025.11.22

This commit is contained in:
2025-11-23 16:34:11 +01:00
commit b399e803b3
31 changed files with 5810 additions and 0 deletions

182
.gitignore vendored Normal file
View File

@@ -0,0 +1,182 @@
# ==========================================
# Node.js / Frontend (React + Vite)
# ==========================================
# Dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
.pnp.*
.yarn/*
# Build outputs
dist/
dist-ssr/
build/
.next/
out/
# Development
*.local
.env.local
.env.development.local
.env.test.local
.env.production.local
# Logs
logs/
*.log
# Cache
.cache/
.vite/
.eslintcache
.parcel-cache/
# ==========================================
# Python / Backend (FastAPI)
# ==========================================
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
# Virtual environments
venv/
ENV/
env/
.venv/
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# PyInstaller
*.manifest
*.spec
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
.pytest_cache/
nosetests.xml
coverage.xml
*.cover
# Jupyter Notebook
.ipynb_checkpoints
# pyenv
.python-version
# Celery
celerybeat-schedule
celerybeat.pid
# ==========================================
# Database
# ==========================================
*.db
*.sqlite
*.sqlite3
*.sql
# ==========================================
# Environment Variables
# ==========================================
.env
.env.*
!.env.example
# ==========================================
# IDE / Editors
# ==========================================
# VSCode
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
# JetBrains IDEs (PyCharm, WebStorm, IntelliJ)
.idea/
*.iml
*.iws
*.ipr
# Sublime Text
*.sublime-project
*.sublime-workspace
# Visual Studio
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# ==========================================
# Operating System
# ==========================================
# macOS
.DS_Store
.AppleDouble
.LSOverride
._*
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
# Linux
*~
.directory
.Trash-*
# ==========================================
# Miscellaneous
# ==========================================
# Temporary files
*.tmp
*.temp
*.swp
*.swo
*~
# Archives
*.zip
*.tar.gz
*.rar
# IDE specific
.history/