Created
July 11, 2013 10:28
-
-
Save Nek-/5974357 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Assetic Configuration | |
assetic: | |
debug: %kernel.debug% | |
use_controller: false | |
bundles: [] | |
java: %java_bin% | |
filters: | |
cssrewrite: ~ | |
less: | |
node: %kernel.root_dir%/../%node_bin% | |
node_paths: [%kernel.root_dir%/../%node_modules%] | |
coffee: | |
bin: %kernel.root_dir%/../%coffee_bin% | |
yui_css: | |
jar: %kernel.root_dir%/Resources/java/yuicompressor-2.4.7.jar | |
yui_js: | |
jar: %kernel.root_dir%/Resources/java/yuicompressor-2.4.7.jar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parameters: | |
database_driver: pdo_mysql | |
database_host: localhost | |
database_port: '3306' | |
database_name: geek | |
database_user: root | |
database_password: null | |
mailer_transport: smtp | |
mailer_host: localhost | |
mailer_user: null | |
mailer_password: null | |
locale: fr | |
secret: ThisIsNotSoSecret | |
# Paths for assetic | |
# This paths are not complete. So having them in parameter is useless | |
# How to make them complete ? | |
coffee_bin: node_modules/.bin/coffee | |
node_bin: /usr/bin/node | |
node_modules: node_modules | |
java_bin: /usr/bin/java |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment