Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 676 Bytes

README.md

File metadata and controls

39 lines (31 loc) · 676 Bytes

ourteam

(just playing with Play2 Framework and Slick)

Project is based on play-scala-seed.g8

sbt new playframework/play-scala-seed.g8

Most of solutions are taken from:

Running

Prerequireties:

  • SBT
  • JDK 8+

To run application in development mode, execute:

sbt run

Other

To get a bcrypt256 password hash:

  1. Navigate to project directory: cd $project_dir
  2. Execute sbt console
  3. Create hasher and calculate hash
    val h = new com.mohiva.play.silhouette.password.BCryptSha256PasswordHasher
    h.hash("1111")