A simple Agile board similar to Trello. This tool was built for a design cum refactoring exercise.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Postgres 9.4.15
Gradle 4.2.1
Jetty 9.4.7
./gradlew createDB
./gradlew clean build
./gradlew appRun
Note: The app will not unless the env var 'DATABASE_URL' is set with the right database URL.
export DATABASE_URL="postgres://<username>:<password>@<server>:<port>/<dbName>"
Example :-
export DATABASE_URL="postgres://postgres:postgres@localhost:5432/prorg"
./gradlew deploy