https://github.com/timmo001/letmeknow-server
https://github.com/timmo001/letmeknow-server
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/timmo001/letmeknow-server
- Owner: timmo001
- License: apache-2.0
- Created: 2024-07-14T19:11:14.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-02-25T17:51:15.000Z (over 1 year ago)
- Last Synced: 2025-07-19T00:41:02.163Z (11 months ago)
- Language: Go
- Homepage: https://github.com/timmo001/letmeknow
- Size: 27.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# LetMeKnow - Server
### Installation
Download the `letmeknow-server-*` binary from the releases page.
### Linux
#### Install
```bash
sudo mv letmeknow-server-* /usr/local/bin/letmeknow-server
sudo chmod +x /usr/local/bin/letmeknow-server
```
#### Setup as a service
```bash
sudo systemctl edit --force --full letmeknow-server.service
```
```ini
[Unit]
Description=LetMeKnow Server
Wants=network-online.target
After=network-online.target
[Service]
Type=simple
ExecStart=/usr/local/bin/letmeknow-server
Restart=always
RestartSec=1
[Install]
WantedBy=default.target
```
Now enable and start the service:
```bash
sudo systemctl enable --now letmeknow-server.service
```
Check the status:
```bash
sudo systemctl status letmeknow-server.service
```
#### Logs
```bash
sudo journalctl -u letmeknow-server.service -f
```