# README
go-cfdg
The source behind Context Free Art Playground at cfdg.herokuapp.com.
Requirements
- Docker Toolbox - 1.10.1
- docker-compose - 1.6.0
- Heroku Toolbelt - 3.42.21
heroku-docker
Toolbelt plugin - 1.1.2
Running Locally with Go
$ git clone https://github.com/kn1kn1/go-cfdg.git
$ cd go-cfdg
$ PORT=3000 go run main.go
$ open "http://localhost:3000"
Running Locally with Docker
$ git clone https://github.com/kn1kn1/go-cfdg.git
$ cd go-cfdg
$ docker-compose up web
$ open "http://$(docker-machine ip default):3000"
Deploying to Heroku
$ git clone https://github.com/kn1kn1/go-cfdg.git
$ cd go-cfdg
$ heroku create
$ heroku docker:release
$ heroku open