This is a simple to do list application build using the Spark Java microframework. Built with: Java 8 (Spark) and PostgreSQL.
- Clone the repository
$ git clone https://github.com/brianmarete/to-do-list-spark.git
$ cd to-do-list-spark
- Create the application database in the Postgres shell
$ psql
CREATE DATABASE to_do;
\q
- Load the database schema
$ psql to_do < to_do.sql
- Run the application
$ ./gradlew run # or 'gradlew run' in Windows
Brian Marete