22 lines
496 B
Desktop File
22 lines
496 B
Desktop File
# Aetheel systemd service file
|
|
# Copy to /etc/systemd/system/aetheel.service and edit paths
|
|
# Or run: bash scripts/setup.sh (does this automatically)
|
|
|
|
[Unit]
|
|
Description=Aetheel Discord-Claude Gateway
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=YOUR_USERNAME
|
|
WorkingDirectory=/path/to/aetheel-2
|
|
EnvironmentFile=/path/to/aetheel-2/.env
|
|
ExecStart=/usr/bin/npx tsx src/index.ts
|
|
Restart=on-failure
|
|
RestartSec=10
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|