REST endpoints implementation to interact with the HRRecruitApp DB. This project makes use of the Spring boot 2 framework and Java 8 features.
You can access and interact with the API with a live demo located here
Create a folder for containing the project source code, access the created folder and use git clone with the project url.
mkdir hrrecruitapprest
cd hrrecruitapprest
git clone https://github.com/vbazurtob/HRRecruitAppRest.git .
Check the instructions available in the HRRecruitApp project page for setting the database.
This project uses gradle for building and testing the application. Three profile application configuration files are provided: default, dev and release.
For local testing purposes you can set the current profile to be used
at the beginning of the build.gradle file by modifying the profiles
variable.
//Three profiles are available: default, dev and release
def profiles = 'dev'
After setting your selected profile to dev
, you must run from the root folder of the project :
./gradlew build
./gradlew bootRun
Application will be ready to access in http://localhost:8080/
Voltaire Bazurto Blacio. All rights reserved 2018.