#Inventory
##Introduction
This is an extremely simple inventory tracking app, meant to serve as a new employee homework assignment and Play Framework practice exercise.
##Requirements
- Play 2
- SBT
- MySQL instance
##Installation
Create a database by connecting and running:
CREATE DATABASE inventory;
GRANT ALL PRIVILEGES ON inventory.* TO 'inventoryuser'@'%' IDENTIFIED BY 'thepassword';
FLUSH PRIVILEGES;
Note: default database name, username, and password for the datasource can be modified by editing ./conf/application.conf file.
##Running
Navigate to the root of this project in terminal and execute:
sbt run
##Debugging
Execute the following command from the root of this project to enable continuous recompiling:
set ~run