Skip to content

Instantly share code, notes, and snippets.

@marcospereira
Created September 12, 2010 06:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcospereira/575886 to your computer and use it in GitHub Desktop.
Save marcospereira/575886 to your computer and use it in GitHub Desktop.
application {
name = "groovy"
mode = "dev"
secret = "0r8lkhhb9i8zyxc6ftx0puujqh4qfh7bqu7a62zudpbxvf0rmtq3b2mzughhnets"
future.bindJPAObjects = true
future.escapeInTemplates = true
http {
cacheControl = 3600
useETag = true
port = 8080
}
db {
url = "jdbc:postgresql://localhost/groovy_dev"
driver = "org.postgresql.Driver"
user = "postgres"
pass = "postgres"
}
jpa {
dialect = "org.hibernate.dialect.PostgreSQLDialect"
ddl = "update"
debugSQL = true
}
modules {
secure = "${play.path}/modules/secure"
}
}
ids {
test {
tmp = "none"
mail.smtp = "mock"
db.url = "jdbc:postgresql://localhost/groovy_test"
jpa.ddl = "create-drop"
http {
cacheControl=0
useETag=false
}
modules {
cobertura = "${play.path}/modules/cobertura"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment