|
|
5 سال پیش | |
|---|---|---|
| .github | 5 سال پیش | |
| cmd | 5 سال پیش | |
| internal | 5 سال پیش | |
| media | 5 سال پیش | |
| var | 5 سال پیش | |
| webui | 5 سال پیش | |
| .dockerignore | 5 سال پیش | |
| .gitignore | 5 سال پیش | |
| .goreleaser.yml | 5 سال پیش | |
| CODE_OF_CONDUCT.md | 5 سال پیش | |
| CONTRIBUTING.adoc | 5 سال پیش | |
| Dockerfile | 5 سال پیش | |
| LICENSE | 5 سال پیش | |
| Makefile | 5 سال پیش | |
| OliveTin.proto | 5 سال پیش | |
| OliveTin.service | 5 سال پیش | |
| README.md | 5 سال پیش | |
| SECURITY.md | 5 سال پیش | |
| go.mod | 5 سال پیش | |
| tools.go | 5 سال پیش |

OliveTin is a web interface for running Linux shell commands.
Some example use cases;
podman restart plex without asking me, and without giving them shell access!Join the community on Discord.
Desktop web browser;
Desktop web browser (dark mode);
Mobile screen size (responsive layout);
All documentation can be found at http://olivetin.app . This includes installation and usage guide, etc.
config.yamlPut this config.yaml in /etc/OliveTin/ if you're running a standard service, or mount it at /config if running in a container.
listenAddressWebUI: 0.0.0.0:1337 # Listen on all addresses available, port 1337
logLevel: "INFO"
actions:
- title: Restart Plex
icon: smile
shell: docker restart plex
# This will send 1 ping
- title: Ping Google.com
shell: ping google.com -c 1
# Restart lightdm on host "overseer"
- title: restart lightdm
icon: poop
shell: ssh root@overseer 'service lightdm restart'
A full example config can be found at in this repository - config.yaml.