Skip to content

Instantly share code, notes, and snippets.

@viccherubini
Created November 3, 2013 12:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viccherubini/7289993 to your computer and use it in GitHub Desktop.
Save viccherubini/7289993 to your computer and use it in GitHub Desktop.
Expert PHP Deployments parameters.yml.template file.
parameters:
database_driver: "pdo_pgsql"
database_host: "@@DB_SETTINGS_HOST@@"
database_port: ~
database_name: "@@DB_SETTINGS_DATABASE@@"
database_user: "@@DB_SETTINGS_USERNAME@@"
database_password: "@@DB_SETTINGS_PASSWORD@@"
test_database_driver: "pdo_pgsql"
test_database_host: "@@DB_SETTINGS_TEST_HOST@@"
test_database_port: ~
test_database_name: "@@DB_SETTINGS_TEST_DATABASE@@"
test_database_user: "@@DB_SETTINGS_TEST_USERNAME@@"
test_database_password: "@@DB_SETTINGS_TEST_PASSWORD@@"
mailer_transport: smtp
mailer_host: "@@MAILER_HOST@@"
mailer_user: "@@MAILER_USERNAME@@"
mailer_password: "@@MAILER_PASSWORD@@"
locale: en
secret: asdfezE233gsfddsfAbr75AKUNdsdsdu
redis_host: "@@REDIS_HOST@@"
redis_port: "@@REDIS_PORT@@"
resque_dsn: "@@REDIS_HOST@@:@@REDIS_PORT@@"
build_date: "@@BUILD_DATE@@"
build_timestamp: "@@BUILD_TIMESTAMP@@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment