Sign inSign up

mdouchement/risuto

By mdouchement

Updated over 7 years ago

Simple wishlist web application

Image
0

1.5K

mdouchement/risuto repository overview

Risuto

Simple wishlist web application

Technologies

Requirements

  • Golang 1.11.x

Installation

$ go get -u github.com/gobuffalo/packr/...
$ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
$ dep ensure

Usage

  • development
# 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 {} \;
  • production
# 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

Licence

MIT. See the LICENSE for more details.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Tag summary

Content type

Image

Digest

Size

6.9 MB

Last updated

over 7 years ago

docker pull mdouchement/risuto