Files
Brancheneinstufung2/.gitignore
Floke b78e2fca59 Consolidate tools into a secure Docker architecture with landing page
- Implement a central reverse proxy (Nginx) with Basic Auth on port 8090.
- Create a unified landing page (dashboard) to access B2B Assistant and Market Intelligence.
- Update frontends with relative API paths and base paths for subdirectory routing (/b2b/, /market/).
- Optimize Docker builds with .dockerignore and a Python-based image for market-backend.
- Enable code sideloading for Python logic via Docker volumes.
- Fix TypeScript errors in general-market-intelligence regarding ImportMeta.
2025-12-29 05:19:53 +00:00

68 lines
1.2 KiB
Plaintext

# Environment & Secrets
# Niemals API-Keys, Passwörter oder Konfigurationsdateien mit sensiblen Daten einchecken.
.env
*.env
credentials.json
service_account.json
dealfront_credentials.json
fotograf_credentials.json
*key.txt
*token.txt
*credentials
ngrok_authtoken.txt
# Python
# Ignoriert Caching-Verzeichnisse und kompilierte Python-Dateien.
__pycache__/
*.pyc
# Logs
# Log-Dateien sollten nicht versioniert werden.
Log/
*.log
# IDE & Editor Configuration
# Verhindert, dass benutzerspezifische Editor-Einstellungen geteilt werden.
.vscode/
# OS Specific
# Ignoriert Systemdateien von macOS, Windows und Synology.
.DS_Store
Thumbs.db
@eaDir/
# Build & Output
# Verzeichnisse für generierte Ausgabedateien.
output/
export/
# Data, Models & Backups
# Ignoriert große Datendateien, trainierte Modelle und Backups.
*.csv
*.xlsx
*.pkl
*.joblib
*.json
*.bak
# Hebe das Ignorieren für Konfigurationsdateien explizit auf, falls nötig.
!keyword_rules.json
!technician_patterns.json
# Tools & Dependencies
# Ignoriert heruntergeladene Tools und Archive.
ngrok
*.tgz
# Temporäre Dateien
# Ignoriert Screenshots und andere temporäre Artefakte.
*screenshot.png
auth_output.txt
auth_url.txt
\ngemini_api_key.txt
.venv/
# Node.js specific
!package.json
!package-lock.json