/to-do-list-spark

A to do list application built with Spark

Primary LanguageJavaMIT LicenseMIT

To-Do List

This is a simple to do list application build using the Spark Java microframework. Built with: Java 8 (Spark) and PostgreSQL.

Setup

  1. Clone the repository
$ git clone https://github.com/brianmarete/to-do-list-spark.git
$ cd to-do-list-spark
  1. Create the application database in the Postgres shell
$ psql
CREATE DATABASE to_do;
\q
  1. Load the database schema
$ psql to_do < to_do.sql
  1. Run the application
$ ./gradlew run # or 'gradlew run' in Windows

Author

Brian Marete