This commit is contained in:
Jonathan Dahan 2024-03-05 20:11:10 -07:00 committed by GitHub
commit 2cb49b4ca2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 27 additions and 0 deletions

View File

@ -286,6 +286,14 @@ guarantee nginx waits for this service to start. Edit
Before=nginx.service
```
## launchd
If you are on macOS, you can use the launchd service available in `contrib/libreddit.plist`.
Install it with `cp contrib/libreddit.plist ~/Library/LaunchAgents/`.
Load and start it with `launchctl load ~/Library/LaunchAgents/libreddit.plist`.
## Building
```

19
contrib/libreddit.plist Normal file
View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>libreddit</string>
<key>Program</key>
<string>libreddit</string>
<key>KeepAlive</key>
<true/>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>