chore: check in pending work — queue preferences, QBO AR diagnostics, mobile engagement fixes, ops scripts
Bundles several in-progress efforts that were sitting uncommitted: - User queue-preferences (migration 087, API route, popover component) - QBO invoice soft-delete (migration 088) and AR diagnostics route - Dashboard/mobile engagement route and page adjustments - Docker Compose log-rotation config - One-off ticket/RMM investigation scripts (scripts/) - Planning docs: phase verification/pattern notes, mobile shell design spec - .gitignore: exclude local scratch financial/inventory data and Claude Code worktree/local-settings runtime state (never meant for version control) Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01W6RuWdiUiXrPK6FLBHjtpY
This commit is contained in:
parent
b638189cb0
commit
672f17b7f9
35 changed files with 2801 additions and 92 deletions
|
|
@ -14,6 +14,11 @@ services:
|
|||
interval: 5s
|
||||
timeout: 3s
|
||||
retries: 5
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-file: "5"
|
||||
|
||||
# PostgreSQL database for Autotask sync
|
||||
postgres:
|
||||
|
|
@ -36,6 +41,11 @@ services:
|
|||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-file: "5"
|
||||
|
||||
# Next.js application on port 3100 (instead of 3000)
|
||||
app:
|
||||
|
|
@ -113,7 +123,7 @@ services:
|
|||
|
||||
# IT Glue Configuration
|
||||
ITGLUE_API_KEY: ${ITGLUE_API_KEY}
|
||||
|
||||
|
||||
# Backblaze B2 Storage (S3-compatible)
|
||||
B2_KEY_ID: ${B2_KEY_ID}
|
||||
B2_APP_KEY: ${B2_APP_KEY}
|
||||
|
|
@ -140,6 +150,11 @@ services:
|
|||
volumes:
|
||||
# Mount .env.local for development (remove in production)
|
||||
- ./.env.local:/app/.env.local:ro
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-size: "10m"
|
||||
max-file: "5"
|
||||
|
||||
volumes:
|
||||
redis_data:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue