Files
BeyondCX_Insights/.gitignore
sujucu70 7ddb8a2ee5 feat: Add Render.com deployment support with production data
Render Configuration:
- render.yaml for declarative deployment
- requirements-dashboard.txt (lightweight deps for cloud)
- Updated .streamlit/config.toml for production
- Updated app.py to auto-detect production vs local data

Production Data:
- Added data/production/test-07/ with 30 real call analyses
- Updated .gitignore to allow data/production/

Documentation:
- Added Render.com section to DEPLOYMENT.md with step-by-step guide

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-19 16:45:57 +01:00

137 lines
1.6 KiB
Plaintext

# ============================================
# CXInsights .gitignore
# ============================================
# === Environment & Secrets ===
.env
.env.local
.env.*.local
*.pem
*.key
secrets/
# === Data (CRITICAL - never commit) ===
data/raw/
data/transcripts/
data/features/
data/processed/
data/outputs/
data/output/
data/logs/
data/.checkpoints/
data/examples/*.json
!data/**/.gitkeep
# === Production Data (allowed for Render deployment) ===
!data/production/
!data/production/**
# === Python ===
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# === Virtual Environment ===
.venv/
venv/
ENV/
env/
.python-version
# === IDE & Editors ===
.idea/
.vscode/
*.swp
*.swo
*~
.project
.pydevproject
.settings/
*.sublime-workspace
*.sublime-project
# === Jupyter Notebooks ===
.ipynb_checkpoints/
*.ipynb_checkpoints/
# === Testing ===
.coverage
.pytest_cache/
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
*.py,cover
.hypothesis/
# === Mypy ===
.mypy_cache/
.dmypy.json
dmypy.json
# === Ruff ===
.ruff_cache/
# === OS Files ===
.DS_Store
Thumbs.db
ehthumbs.db
Desktop.ini
# === Logs ===
*.log
logs/
log/
# === Build Artifacts ===
*.exe
*.dll
*.dylib
# === Temporary Files ===
*.tmp
*.temp
*.bak
*.backup
tmp/
temp/
# === Claude Code ===
.claude/
# === Model Outputs (large files) ===
*.pdf
*.xlsx
*.png
*.svg
!docs/**/*.png
!docs/**/*.svg
# === Audio Files (CRITICAL - never commit) ===
*.mp3
*.wav
*.m4a
*.flac
*.ogg
*.aac
!tests/fixtures/sample_audio/*.mp3