Update all hardcoded paths from ~/AI/projects/* to ~/chorus/project-queues/active/* and ~/AI/secrets/* to ~/chorus/business/secrets/* after workspace reorganization. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
42 lines
938 B
Desktop File
42 lines
938 B
Desktop File
[Unit]
|
|
Description=Bzzz P2P Task Coordination System
|
|
Documentation=https://github.com/anthonyrawlins/bzzz
|
|
After=network.target
|
|
Wants=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=tony
|
|
Group=tony
|
|
WorkingDirectory=/home/tony/chorus/project-queues/active/BZZZ
|
|
ExecStart=/home/tony/chorus/project-queues/active/BZZZ/bzzz
|
|
Restart=always
|
|
RestartSec=10
|
|
KillMode=mixed
|
|
KillSignal=SIGTERM
|
|
TimeoutStopSec=30
|
|
|
|
# Environment variables
|
|
Environment=HOME=/home/tony
|
|
Environment=USER=tony
|
|
Environment=BZZZ_HIVE_API_URL=https://hive.home.deepblack.cloud
|
|
Environment=BZZZ_GITHUB_TOKEN_FILE=/home/tony/chorus/business/secrets/gh-token
|
|
|
|
# Logging
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
SyslogIdentifier=bzzz
|
|
|
|
# Security settings
|
|
NoNewPrivileges=true
|
|
PrivateTmp=true
|
|
ProtectSystem=strict
|
|
ProtectHome=false
|
|
ReadWritePaths=/home/tony/chorus/project-queues/active/BZZZ
|
|
|
|
# Resource limits
|
|
LimitNOFILE=65536
|
|
LimitNPROC=4096
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |