Groovy Diversity Initiave Website Backend
This is the backend of the gr8di website. It accepts the api requests and renders some results to the front-end.
Clone this repository to get started.
To run the app, the command is
grails run-app
Before running the app, you will need to setup your environment as follows:
- Install grails using the command
$ sdk install grails - cd into the project's root directory from your command prompt and run the app using either of the following
$ grails run-app$ ./grailsw run-app
$ grails test-app
- If you want to run only unit tests or integration/functional tests, you can pass in a command line flag to choose one or the other.
$ ./grailsw test-app -unit$ ./grails test-app -integration
- This app was built using Grails version: 3.3.6, Groovy version: 2.4.15, JVM version: 1.8.0 161