diff options
Diffstat (limited to 'conf/application.conf')
-rw-r--r-- | conf/application.conf | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/conf/application.conf b/conf/application.conf index 1db3b0e..72c25b7 100644 --- a/conf/application.conf +++ b/conf/application.conf | |||
@@ -9,6 +9,7 @@ | |||
9 | # | 9 | # |
10 | # See http://www.playframework.com/documentation/latest/ApplicationSecret for more details. | 10 | # See http://www.playframework.com/documentation/latest/ApplicationSecret for more details. |
11 | application.secret="e@_?aqO:dGjH9LfXK?T;V`Pb9K?S22igdQVvgN?b?vnb[UkXbORmWO`O9>mWabI5" | 11 | application.secret="e@_?aqO:dGjH9LfXK?T;V`Pb9K?S22igdQVvgN?b?vnb[UkXbORmWO`O9>mWabI5" |
12 | application.secret=${?APP_SECRET} | ||
12 | 13 | ||
13 | # The application languages | 14 | # The application languages |
14 | # ~~~~~ | 15 | # ~~~~~ |
@@ -36,15 +37,22 @@ application.langs="en" | |||
36 | # You can declare as many datasources as you want. | 37 | # You can declare as many datasources as you want. |
37 | # By convention, the default datasource is named `default` | 38 | # By convention, the default datasource is named `default` |
38 | # | 39 | # |
39 | # db.default.driver=org.h2.Driver | 40 | db.default.driver=org.postgresql.Driver |
40 | # db.default.url="jdbc:h2:mem:play" | 41 | db.default.driver=${?DATABASE_DRIVER} |
42 | db.default.url="jdbc:postgresql://localhost/minibay_dev" | ||
43 | db.default.url=${?DATABASE_URL} | ||
41 | # db.default.user=sa | 44 | # db.default.user=sa |
42 | # db.default.password="" | 45 | # db.default.password="" |
43 | 46 | ||
47 | slick.default="models.*" | ||
48 | slick.profile="scala.slick.driver.PostgresDriver" | ||
49 | slick.profile=${?SLICK_PROFILE} | ||
50 | |||
44 | # Evolutions | 51 | # Evolutions |
45 | # ~~~~~ | 52 | # ~~~~~ |
46 | # You can disable evolutions if needed | 53 | # You can disable evolutions if needed |
47 | # evolutionplugin=disabled | 54 | evolutionplugin=disabled |
55 | # applyEvolutions.default=true | ||
48 | 56 | ||
49 | # Logger | 57 | # Logger |
50 | # ~~~~~ | 58 | # ~~~~~ |