Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 791 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 791 Bytes

play-silhouette-simple-slick

Simple Play! application Using Silhouette and Slick. This app is meant to demo a simple form based login, that persists user identity to a relational database, with the fewest possible dependencies and components. It is configured to use bcrypt, so it is (ostensibly) secure.

Configuration :

The following environmental variables in conf/application.conf should be defined:

slick.dbs.default.profile = ${JDBC_PROFILE}
slick.dbs.default.db.driver = ${DB_DRIVER}
slick.dbs.default.db.url = ${DB_URL}
slick.dbs.default.db.user = ${DB_USER}
slick.dbs.default.db.password = ${DB_PASSWORD}