teamblue

System Requirements

  • java version 8+
  • MySQL 5.6+
  • Gradle 4.9+

How to setup

  1. Get the project cloned

git clone git@github.com:uowteamblue/teamblue.git

  1. Setup database

CREATE DATABASE teamblue;

CREATE USER 'teamblue'@'localhost' IDENTIFIED BY 'test123;

GRANT ALL PRIVILEGES ON teabblue.* TO 'teamblue'@'localhost';

FLUSH PRIVILEGES;

  1. Build project

./gradlew build

  1. Run

./gradlew bootRun

  1. Server up and running

GET http://localhost:8080/health

References