Files
Warracker/.gitignore
sassanix 6b035b59a8 Fix Paperless-ngx issues, restores missing assets, and improves stability.
- Fixed: Paperless-ngx document uploads were being incorrectly flagged as duplicates due to invalid API parameter usage (checksum → checksum__iexact).

- Fixed: API token authentication with Paperless-ngx now works properly when Two-Factor Authentication (2FA) is enabled, ensuring secure token-only integration.

- Fixed: Restored missing i18next JavaScript libraries for non-Docker installations, ensuring status page and i18n features function correctly.

- Enhanced: Replaced psycopg2-binary with psycopg2 for production stability and compatibility.

- Enhanced: Adjusted .gitignore to track /lib directory, ensuring essential libraries are available across environments.
2025-09-18 10:56:43 -03:00

74 lines
1.1 KiB
Plaintext

# --- Python ---
# Byte-compiled / optimized / C extension files
__pycache__/
*.pyc
*.pyo
*.pyd
# Distribution / packaging
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual Environments
.env/
.venv/
env/
venv/
ENV/
env.bak/
venv.bak/
# --- Project-Specific ---
# Environment variables
# CRITICAL: This file contains secrets and should NEVER be committed.
# An example file (.env.example) should be used as a template instead.
.env
# User-uploaded files (receipts, manuals, photos)
# This directory is stateful data and does not belong in version control.
/uploads/
# Docker-managed volumes for persistent data
# These are stateful and should not be committed.
/postgres_data/
/warracker_uploads/
# Developer/diagnostic scripts, not part of the core application.
scripts/
# --- IDE / Editor Configuration ---
.idea/
.vscode/
*.swp
*~
# --- OS-generated files ---
# macOS
.DS_Store
.AppleDouble
.LSOverride
# Windows
Thumbs.db
ehthumbs.db
ehthumbs_vista.db
*.stackdump
# --- Log files ---
*.log
logs/