demo for any-gitea install
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/http"
|
||||
"os"
|
||||
)
|
||||
|
||||
func main() {
|
||||
msg := os.Getenv("HELLO_MSG")
|
||||
if msg == "" {
|
||||
msg = "hi from someone elses gitea"
|
||||
}
|
||||
port := os.Getenv("PORT")
|
||||
if port == "" {
|
||||
port = "8080"
|
||||
}
|
||||
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
||||
fmt.Fprintln(w, msg)
|
||||
})
|
||||
http.ListenAndServe(":"+port, nil)
|
||||
}
|
||||
Reference in New Issue
Block a user