mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-30 00:00:15 +01:00
use devel branch to show the travis badge
This commit is contained in:
parent
5582cf0cf6
commit
bcd43023ce
2 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
# HermitCore - A lightweight unikernel for a scalable and predictable runtime behavior
|
||||
|
||||
[](https://travis-ci.org/RWTH-OS/HermitCore)
|
||||
[](https://travis-ci.org/RWTH-OS/HermitCore)
|
||||
[](https://radiant-ridge-95061.herokuapp.com)
|
||||
|
||||
The project [HermitCore]( http://www.hermitcore.org ) is a new
|
||||
|
|
|
@ -16,12 +16,12 @@ import (
|
|||
func main() {
|
||||
fmt.Println("This is an \"echo\" server that displays request parameters.")
|
||||
fmt.Println("Start the server and send a http request to it (e.g.")
|
||||
fmt.Println("curl http://localhost:8000/help). The server uses port 8000.")
|
||||
fmt.Println("curl http://localhost:80/help). The server uses port 80.")
|
||||
fmt.Println("If KVM is implicitly started by our proxy, please open the port by")
|
||||
fmt.Println("setting the environment variable HERMIT_APP_PORT to 8000.")
|
||||
fmt.Println("setting the environment variable HERMIT_APP_PORT to 80.")
|
||||
|
||||
http.HandleFunc("/", handler)
|
||||
log.Fatal(http.ListenAndServe(":8000", nil))
|
||||
log.Fatal(http.ListenAndServe(":80", nil))
|
||||
}
|
||||
|
||||
//!+handler
|
||||
|
|
Loading…
Add table
Reference in a new issue