first commit

This commit is contained in:
BroodjeAap 2020-06-29 17:13:04 +00:00
parent f0011f36e9
commit 6bd8d9b3b5
3 changed files with 30 additions and 1 deletions

View file

@ -1,3 +1,10 @@
# StreamWatcher
Can watch and record several streams, optionally based on annotated areas.
Can watch and record several streams, optionally based on annotated areas.
## Setup
### Conda
Install env:
`conda env create -f requirements.yaml`

16
main.go Executable file
View file

@ -0,0 +1,16 @@
package main
import (
"fmt"
"log"
"net/http"
)
func root(w http.ResponseWriter, r *http.Request){
fmt.Fprint(w, "Root dfsdssite")
}
func main() {
http.HandleFunc("/", root)
log.Fatal(http.ListenAndServe(":8080", nil))
}

6
requirements.yaml Executable file
View file

@ -0,0 +1,6 @@
name: go
channels:
- conda-forge
dependencies:
- go=1.13.12
- gxx_linux-64