Files
next.orly.dev/scripts/orly.service
mleku 48c7fab795
Some checks failed
Go / build (push) Has been cancelled
Improve logging and handling for WebSocket message processing, delivery, and diagnostics.
- Enhanced logging for WebSocket writes, message handling, and delivery timing.
- Added diagnostics for slow deliveries, failures, and context timeouts.
- Incorporated extensive error handling for malformed messages and client notifications.
- Enabled command results and refined subscription management.
- Introduced detailed connection state tracking and metrics for messages, requests, and events.
- Added new `run-market-probe.sh` script for relay testing and Market seeding.
2025-10-01 08:27:22 +01:00

17 lines
407 B
Desktop File
Executable File

# systemd unit to run orly as a service
[Unit]
Description=orly
[Service]
Type=simple
User=mleku
ExecStart=/home/mleku/.local/bin/orly
Restart=always
Wants=network-online.target
# waits for wireguard service to come up before starting, remove if running it directly on an
# internet routeable connection
After=network.target network-online.target wg-quick@wg0.service
[Install]
WantedBy=multi-user.target