|
|
пре 4 година | |
|---|---|---|
| .github | пре 4 година | |
| cmd | пре 5 година | |
| internal | пре 4 година | |
| media | пре 5 година | |
| var | пре 4 година | |
| webui | пре 5 година | |
| .dockerignore | пре 5 година | |
| .gitignore | пре 5 година | |
| .goreleaser.yml | пре 5 година | |
| CODE_OF_CONDUCT.md | пре 5 година | |
| CONTRIBUTING.adoc | пре 4 година | |
| Dockerfile | пре 5 година | |
| Jenkinsfile | пре 4 година | |
| LICENSE | пре 5 година | |
| Makefile | пре 4 година | |
| OliveTin.proto | пре 5 година | |
| OliveTin.service | пре 5 година | |
| README.md | пре 5 година | |
| SECURITY.md | пре 5 година | |
| buf.gen.yaml | пре 4 година | |
| buf.lock | пре 4 година | |
| buf.yaml | пре 4 година | |
| go.mod | пре 4 година | |
| tools.go | пре 4 година |

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://docs.olivetin.app . This includes installation and usage guide, etc.
config.yamlThis is a quick example of config.yaml - but again, lots of documentation for how to write your config.yaml can be found at the documentation site.
Put this config.yaml in /etc/OliveTin/ if you're running a standard service, or mount it at /config if running in a container.
# Listen on all addresses available, port 1337
listenAddressSingleHTTPFrontend: 0.0.0.0:1337
# Choose from INFO (default), WARN and DEBUG
logLevel: "INFO"
# Actions (buttons) to show up on the WebUI:
actions:
# Docs: https://docs.olivetin.app/action-container-control.html
- title: Restart Plex
icon: smile
shell: docker restart plex
# This will send 1 ping
# Docs: https://docs.olivetin.app/action-ping.html
- title: Ping Google.com
shell: ping google.com -c 1
# Restart lightdm on host "overseer"
# Docs: https://docs.olivetin.app/action-ssh.html
- 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.