1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2025-03-31 01:24:31 +00:00
ctrl/webui/main.go
postmannen 5d99554c3b Initial Web UI, and TUI implementations :
NB: Breaking change, since the message format have changed.
Uses nats to communicate with ctrl, and nkeys for auth.
Supports the use of files as templates for scripts to run. The main source for the templates are the ./files directory on the node named central.
webUI: Settings are stored locally using Javascript localStorage.
shortcut ctrl+t to open the template menu for webui
2025-02-14 06:43:52 +01:00

25 lines
469 B
Go

package main
import (
"flag"
"log"
"net/http"
)
func main() {
// Define command line flag for port
port := flag.String("port", "localhost:8080", "Port to serve on (default 8080)")
flag.Parse()
// Create file server handler
fs := http.FileServer(http.Dir("."))
// Register handler for root path
http.Handle("/", fs)
// Start server
log.Printf("Starting server on %v", port)
if err := http.ListenAndServe(*port, nil); err != nil {
log.Fatal(err)
}
}