Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 593 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 593 Bytes

Example web todo list

This is a simple web todo list for presentations and demos. It's written in Golang + Javascript.

Building the image

Compile the code

go get github.com/codegangsta/negroni
go get github.com/gorilla/mux
go get github.com/xyproto/simpleredis

On OSX

CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o bin/todo-app .

Build the Container

docker build -t johscheuer/todo-app-web .
# Tag the image if you want
docker tag -f johscheuer/todo-app-web johscheuer/todo-app-web:v1
docker push johscheuer/todo-app-web