Advertisement
Guest User

Untitled

a guest
Jan 20th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. import play.api._
  2. import play.api.mvc._
  3. import play.api.db.DB
  4. import anorm._
  5.  
  6. object MainController extends Controller {...}
  7.  
  8. # db.default.driver=com.mysql.jdbc.Driver
  9. # db.default.url="jdbc:mysql:/usr/local/path/to/database"
  10.  
  11. libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.27"
  12.  
  13. play new app
  14. cd app/
  15. play
  16. idea with-sources=yes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement