feat: implement server-side loading for invoices page with authentication and filters feat: create invoices page with filtering, infinite scroll, and data table feat: add server-side loading for invoice edit page with data fetching feat: implement invoice edit page with tabbed interface and form handling
62 lines
504 B
Plaintext
62 lines
504 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
.venv/
|
|
ENV/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib64/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
.pnpm-store/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
backend/SCRIPTS/
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Node (para frontend)
|
|
node_modules/
|
|
.npm
|
|
.yarn
|
|
|
|
# Docker
|
|
*.dockerignore
|
|
postgres-data/ |