A small helpdesk system: an office Pixel running a patched GrapheneOS Dialer answers technician calls, records both call legs as separate channels, and a Ruby backend transcribes them through Whisper and files an AI summary against the caller. Squashed to a single commit for sharing. No credentials are included; secrets live outside the repo in /etc/helpdesk/env on the server or a gitignored .claude/env.local locally. See .claude/env.local.example for the shape. Start at README.md, then docs/architecture.md.
9 lines
262 B
Desktop File
9 lines
262 B
Desktop File
# Installed at /etc/systemd/system/helpdesk-pg-backup.service. Oneshot, triggered by the .timer.
|
|
[Unit]
|
|
Description=Helpdesk PostgreSQL nightly backup
|
|
After=postgresql.service
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
User=postgres
|
|
ExecStart=/usr/local/sbin/helpdesk-pg-backup.sh
|