├── .gitignore ├── chromium-app.run ├── static └── stylesheets │ └── main.css ├── templates ├── docker.html ├── man.html ├── command.html └── home.html ├── README.md ├── monitor.go ├── LICENSE └── web └── web.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /chromium-app.run: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #this is a script to start an instance of chromium with the --app flag in which the browser looks at the web page as 3 | #an app instead of a full address. allows for desktop like application building 4 | 5 | chromium --app=http://localhost:8080 6 | -------------------------------------------------------------------------------- /static/stylesheets/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | /*background: green;*/ 3 | } 4 | 5 | .text-center { 6 | text-align: center; 7 | } 8 | 9 | .container { 10 | width: 900px; 11 | margin: auto; 12 | display: block; 13 | } 14 | 15 | .container.command { 16 | unicode-bidi: embed; 17 | font-family: monospace; 18 | white-space: pre; 19 | } -------------------------------------------------------------------------------- /templates/docker.html: -------------------------------------------------------------------------------- 1 | {{ define "docker"}} 2 | 3 | 4 |
5 | 6 |11 | {{ .Data1}} 12 |
13 |14 | {{ .Data2}} 15 |
16 |17 | {{ .Data3}} 18 |
19 | {{end}} 20 | -------------------------------------------------------------------------------- /templates/man.html: -------------------------------------------------------------------------------- 1 | {{ define "man"}} 2 | 3 | 4 | 5 | 6 |