Skip to content

JNAppleby/inventory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#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

About

New employee homework assignment.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published