1
0
Fork 0
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:
Stefan Lankes 2017-06-09 15:13:03 +02:00
parent 5582cf0cf6
commit bcd43023ce
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
# HermitCore - A lightweight unikernel for a scalable and predictable runtime behavior # HermitCore - A lightweight unikernel for a scalable and predictable runtime behavior
[![Build Status](https://travis-ci.org/RWTH-OS/HermitCore.svg?branch=master)](https://travis-ci.org/RWTH-OS/HermitCore) [![Build Status](https://travis-ci.org/RWTH-OS/HermitCore.svg?branch=devel)](https://travis-ci.org/RWTH-OS/HermitCore)
[![Slack Status](https://radiant-ridge-95061.herokuapp.com/badge.svg)](https://radiant-ridge-95061.herokuapp.com) [![Slack Status](https://radiant-ridge-95061.herokuapp.com/badge.svg)](https://radiant-ridge-95061.herokuapp.com)
The project [HermitCore]( http://www.hermitcore.org ) is a new The project [HermitCore]( http://www.hermitcore.org ) is a new

View file

@ -16,12 +16,12 @@ import (
func main() { func main() {
fmt.Println("This is an \"echo\" server that displays request parameters.") 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("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("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) http.HandleFunc("/", handler)
log.Fatal(http.ListenAndServe(":8000", nil)) log.Fatal(http.ListenAndServe(":80", nil))
} }
//!+handler //!+handler