├── .gitignore ├── LICENSE ├── README.md ├── app ├── controllers │ ├── appController.go │ ├── base │ │ └── baseController.go │ └── buoyController.go ├── init.go ├── models │ └── buoy │ │ └── buoyModels.go ├── services │ ├── buoy │ │ └── buoyService.go │ └── services.go └── views │ ├── App │ ├── Index.html │ └── Rating.html │ ├── debug.html │ ├── errors │ ├── 404.html │ └── 500.html │ ├── flash.html │ ├── footer.html │ └── header.html ├── conf ├── app.conf └── routes ├── messages └── sample.en ├── public ├── css │ └── bootstrap.css ├── img │ ├── favicon.png │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png └── js │ └── jquery-1.9.1.min.js ├── run.go ├── tests └── apptest.go ├── utilities ├── helper │ ├── catch.go │ ├── constants.go │ └── globalvariables.go ├── mongo │ └── mongo.go └── tracelog │ ├── sendemail.go │ └── tracelog.go └── zscripts ├── build-debug.sh ├── build-prod.sh ├── debugging.txt ├── run-tests.sh └── run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/README.md -------------------------------------------------------------------------------- /app/controllers/appController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/app/controllers/appController.go -------------------------------------------------------------------------------- /app/controllers/base/baseController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/app/controllers/base/baseController.go -------------------------------------------------------------------------------- /app/controllers/buoyController.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/app/controllers/buoyController.go -------------------------------------------------------------------------------- /app/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/app/init.go -------------------------------------------------------------------------------- /app/models/buoy/buoyModels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/app/models/buoy/buoyModels.go -------------------------------------------------------------------------------- /app/services/buoy/buoyService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/app/services/buoy/buoyService.go -------------------------------------------------------------------------------- /app/services/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/app/services/services.go -------------------------------------------------------------------------------- /app/views/App/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/app/views/App/Index.html -------------------------------------------------------------------------------- /app/views/App/Rating.html: -------------------------------------------------------------------------------- 1 | {{.json}} -------------------------------------------------------------------------------- /app/views/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/app/views/debug.html -------------------------------------------------------------------------------- /app/views/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/app/views/errors/404.html -------------------------------------------------------------------------------- /app/views/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/app/views/errors/500.html -------------------------------------------------------------------------------- /app/views/flash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/app/views/flash.html -------------------------------------------------------------------------------- /app/views/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/app/views/footer.html -------------------------------------------------------------------------------- /app/views/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/app/views/header.html -------------------------------------------------------------------------------- /conf/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/conf/app.conf -------------------------------------------------------------------------------- /conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/conf/routes -------------------------------------------------------------------------------- /messages/sample.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/messages/sample.en -------------------------------------------------------------------------------- /public/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/public/css/bootstrap.css -------------------------------------------------------------------------------- /public/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/public/img/favicon.png -------------------------------------------------------------------------------- /public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/js/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/public/js/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /run.go: -------------------------------------------------------------------------------- 1 | // Provides support to run shell scripts within LiteIDE -------------------------------------------------------------------------------- /tests/apptest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/tests/apptest.go -------------------------------------------------------------------------------- /utilities/helper/catch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/utilities/helper/catch.go -------------------------------------------------------------------------------- /utilities/helper/constants.go: -------------------------------------------------------------------------------- 1 | package helper 2 | 3 | //** CONSTANTS 4 | 5 | const ( 6 | MAIN_GO_ROUTINE = "main" 7 | ) 8 | -------------------------------------------------------------------------------- /utilities/helper/globalvariables.go: -------------------------------------------------------------------------------- 1 | package helper 2 | 3 | //** PACKAGE VARIABLES 4 | 5 | var ( 6 | MONGO_DATABASE string 7 | ) 8 | -------------------------------------------------------------------------------- /utilities/mongo/mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/utilities/mongo/mongo.go -------------------------------------------------------------------------------- /utilities/tracelog/sendemail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/utilities/tracelog/sendemail.go -------------------------------------------------------------------------------- /utilities/tracelog/tracelog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/utilities/tracelog/tracelog.go -------------------------------------------------------------------------------- /zscripts/build-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/zscripts/build-debug.sh -------------------------------------------------------------------------------- /zscripts/build-prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/zscripts/build-prod.sh -------------------------------------------------------------------------------- /zscripts/debugging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/zscripts/debugging.txt -------------------------------------------------------------------------------- /zscripts/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/zscripts/run-tests.sh -------------------------------------------------------------------------------- /zscripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goinggo/revel-mgo/HEAD/zscripts/run.sh --------------------------------------------------------------------------------