mirror of
https://github.com/postmannen/ctrl.git
synced 2025-03-31 01:24:31 +00:00
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
25 lines
469 B
Go
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)
|
|
}
|
|
}
|