├── .gitignore ├── README.md ├── application.go └── public └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrichman/elastic-beanstalk-go-demo/HEAD/README.md -------------------------------------------------------------------------------- /application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrichman/elastic-beanstalk-go-demo/HEAD/application.go -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrichman/elastic-beanstalk-go-demo/HEAD/public/index.html --------------------------------------------------------------------------------