Skip to content

Latest commit

 

History

History
43 lines (21 loc) · 716 Bytes

README.md

File metadata and controls

43 lines (21 loc) · 716 Bytes

Oauth2 Server using Play!

Also have a look at OAuth2 client apps in sample-apps/ folder.

Requirements

This project requires following tools

  • JDK7+
  • SBT 0.13+

Build

Run tests

$ sbt test

Create a distribution

$ sbt dist

First time Server and Database Setup

Please read DEVELOPMENT.md for instructions DEVELOPMENT.md.

Test Coverage

SBT Scoverage plugin generates the test coverage:

$ sbt scoverage:test

The report is generated in XML and HTML format at target/scala-2.10/scoverage-report/

$ cd target/scala-2.10/scoverage-report/
$ firefox /index.html

Deployment

Read here