Go to file
2024-07-10 12:57:11 +02:00
_gen MVP 2023-12-01 09:56:06 +01:00
.idea Added favicons (iconset && auto-detection) 2023-12-23 23:55:43 +01:00
api Added favicons (iconset && auto-detection) 2023-12-23 23:55:43 +01:00
cmd/server html 2023-12-01 13:44:58 +01:00
icons Added favicons (iconset && auto-detection) 2023-12-23 23:55:43 +01:00
jobs [GET] /server 2023-12-01 11:24:22 +01:00
logic Added favicons (iconset && auto-detection) 2023-12-23 23:55:43 +01:00
models Added favicons (iconset && auto-detection) 2023-12-23 23:55:43 +01:00
README_files README 2024-07-10 12:57:11 +02:00
swagger Added favicons (iconset && auto-detection) 2023-12-23 23:55:43 +01:00
webassets Added favicons (iconset && auto-detection) 2023-12-23 23:55:43 +01:00
.gitignore Added favicons (iconset && auto-detection) 2023-12-23 23:55:43 +01:00
.golangci.yml MVP 2023-12-01 09:56:06 +01:00
config.go html 2023-12-01 13:44:58 +01:00
dgi.go MVP 2023-12-01 09:56:06 +01:00
Dockerfile MVP 2023-12-01 09:56:06 +01:00
errorTypes.go MVP 2023-12-01 09:56:06 +01:00
go.mod Added favicons (iconset && auto-detection) 2023-12-23 23:55:43 +01:00
go.sum Added favicons (iconset && auto-detection) 2023-12-23 23:55:43 +01:00
init.go MVP 2023-12-01 09:56:06 +01:00
Makefile Added favicons (iconset && auto-detection) 2023-12-23 23:55:43 +01:00
override.swag MVP 2023-12-01 09:56:06 +01:00
README.md README 2024-07-10 12:57:11 +02:00
TODO.md get better names 2023-12-02 01:01:16 +01:00
utils.go html 2023-12-01 13:44:58 +01:00

LocalHostBunny

Shows all locally running webserver for quick access

Systemd Unit

#> vim /etc/systemd/system/localhostbunny.service
[Unit]
Description=LocalhostBunny
After=network.target
Wants=network-online.target

[Service]
Restart=always
Type=simple
User=root
Group=root
WorkingDirectory=/home/{{USER}}
ExecStart=/home/{{USER}}/bunny
Environment=

[Install]
WantedBy=multi-user.target
#> systemctl daemon-reload
#> systemctl enable --now "localhostbunny"