Simple wishlist web application
$ go get -u github.com/gobuffalo/packr/...
$ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
$ dep ensure
# Download assets
$ go run risuto.go fetch
# Run app server
$ make live-reload
# old fashion
$ go run risuto.go server -p 5000
# Before pushing to Github
$ find . -name '*.go' -not -path './vendor*' -exec go fmt {} \;
# Using Docker
$ docker run -p 5000:5000 -d mdouchement/risuto
# or
$ docker run -v /data:/data -p 5000:5000 -d mdouchement/risuto
# Baremetal
$
$ packr build risuto.go
$ ./risuto server -p 5000
Environment variables https://github.com/mdouchement/risuto/blob/master/config/config.go
MIT. See the LICENSE for more details.
Content type
Image
Digest
Size
6.9 MB
Last updated
over 7 years ago
docker pull mdouchement/risuto