OSDN Git Service

The modification of the updateDesignChangeForm
[open-pdm-light/PartList.git] / PartsList / PartsList / conf / application.conf
1 # This is the main configuration file for the application.
2 # ~~~~~
3
4 # Secret key
5 # ~~~~~
6 # The secret key is used to secure cryptographics functions.
7 # If you deploy your application to several instances be sure to use the same key!
8 application.secret="<yvJnhnV]UpN5Hd^gwLyZK`<0]8S7TN=^kAmuCtVWjEf:`VcwXLdD7IJn354bi@>"
9
10 # The application languages
11 # ~~~~~
12 application.langs="en,ja,ja-JP"
13
14 # Global object class
15 # ~~~~~
16 # Define the Global object class for this application.
17 # Default to Global in the root package.
18 # application.global=Global
19
20 # Router 
21 # ~~~~~
22 # Define the Router object to use for this application.
23 # This router will be looked up first when the application is starting up,
24 # so make sure this is the entry point. 
25 # Furthermore, it's assumed your route file is named properly. 
26 # So for an application router like `my.application.Router`,
27 # you may need to define a router file `conf/my.application.routes`.
28 # Default to Routes in the root package (and conf/routes)
29 # application.router=my.application.Routes
30
31 # Database configuration
32 # ~~~~~ 
33 # You can declare as many datasources as you want.
34 # By convention, the default datasource is named `default`
35 #
36 # db.default.driver=org.h2.Driver
37 # db.default.url="jdbc:h2:mem:play"
38 # db.default.user=sa
39 # db.default.password=""
40 db.default.driver=com.mysql.jdbc.Driver
41 db.default.url="jdbc:mysql://localhost/play_db?useUnicode=yes&characterEncoding=UTF-8"
42 db.default.user=dbuser
43 db.default.password="dbpass"
44
45 # Evolutions
46 # ~~~~~
47 # You can disable evolutions if needed
48 # evolutionplugin=disabled
49
50 # Logger
51 # ~~~~~
52 # You can also configure logback (http://logback.qos.ch/), by providing a logger.xml file in the conf directory .
53
54 # Root logger:
55 logger.root=ERROR
56
57 # Logger used by the framework:
58 logger.play=INFO
59
60 # Logger provided to your application:
61 logger.application=DEBUG
62 # mailer
63 smtp.host=localhost
64 smtp.port=25
65 smtp.ssl=no
66 smtp.tls=no
67 smtp.user=smtpuser
68 smtp.password=smtppass