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.
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}