File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -61,19 +61,28 @@ twig:
61
61
# Doctrine Configuration (used to access databases and manipulate their information)
62
62
doctrine :
63
63
dbal :
64
- # instead of configuring the database access options in this file, we pull
65
- # them from the app/config/parameters.yml file. The reason is that config.yml
66
- # stores options that change the application behavior and parameters.yml
67
- # stores options that change from one server to another
64
+ # if you don't want to use SQLite, comment the two following lines
68
65
driver : " pdo_sqlite"
69
- # temp workaround for https://github.com/doctrine/dbal/issues/1106: define DB path here
70
66
path : " %kernel.root_dir%/data/blog.sqlite"
67
+ # uncomment the following lines to use a database different than SQLite
68
+ # driver: pdo_mysql
69
+ # host: "%database_host%"
70
+ # port: "%database_port%"
71
+ # dbname: "%database_name%"
72
+ # user: "%database_user%"
73
+ # password: "%database_password%"
74
+ # charset: UTF8
71
75
72
76
orm :
73
77
auto_generate_proxy_classes : " %kernel.debug%"
74
78
auto_mapping : true
75
79
76
80
# Swiftmailer Configuration (used to send emails)
81
+ # instead of configuring the mailer credentials in this file, we pull
82
+ # them from the app/config/parameters.yml file. The reason is that config.yml
83
+ # stores options that change the application behavior and parameters.yml
84
+ # stores options that change from one server to another
85
+ #
77
86
# swiftmailer:
78
87
# transport: "%mailer_transport%"
79
88
# host: "%mailer_host%"
You can’t perform that action at this time.
0 commit comments