bigbluebutton-Github/record-and-playback/playback-web/grails-app/conf/DataSource.groovy
2010-07-19 12:16:11 -04:00

32 lines
733 B
Groovy
Executable File

dataSource {
pooled = true
driverClassName = "com.mysql.jdbc.Driver"
username = "root"
password = "root"
}
hibernate {
cache.use_second_level_cache=true
cache.use_query_cache=true
cache.provider_class='net.sf.ehcache.hibernate.EhCacheProvider'
}
// environment specific settings
environments {
development {
dataSource {
dbCreate = "update" // one of 'create', 'create-drop','update'
url = "jdbc:mysql://localhost:3306/BigBlueButtonDB"
}
}
test {
dataSource {
dbCreate = "update"
url = "jdbc:mysql://localhost:3306/BigBlueButtonDB"
}
}
production {
dataSource {
dbCreate = "update"
url = "jdbc:mysql://localhost:3306/BigBlueButtonDB"
}
}
}