Created
June 2, 2010 20:12
Default configuration files for Collabbit development.
This file contains 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
development: | |
adapter: mysql | |
encoding: utf8 | |
database: collabbit_dev | |
username: | |
password: | |
host: localhost | |
test: | |
adapter: mysql | |
encoding: utf8 | |
database: collabbit_test | |
username: | |
password: | |
host: localhost | |
production: | |
adapter: mysql | |
encoding: utf8 | |
database: collabbit_prod | |
username: | |
password: | |
host: localhost |
This file contains 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
base: &BASE | |
repository: git@github.com:elitheli/collabbit.git | |
domain: collabbit.org | |
user: collabbit | |
production: | |
<<: *BASE | |
deploy_to: /hfoss/websites/collabbit_org/production | |
production_database: collabbit_production | |
development_database: collabbit_development | |
branch: stable | |
staging: | |
<<: *BASE | |
deploy_to: /hfoss/websites/collabbit_org/staging | |
database: collabbit_staging | |
production_database: collabbit_staging | |
development_database: collabbit_development | |
branch: master |
This file contains 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
action_controller: | |
session: | |
session_key: _collabbit_dev | |
secret: sa8a7s98f7a89fa789a7s98a7f89as789fj31r1k2h5k21h511 | |
host: | |
support_email: 'support@collabbit.org' | |
base_url: 'collabbit.dev:3000' | |
support_url: 'support.collabbit.org' |
This file contains 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
base: &BASE | |
port: 25 | |
domain: example.com | |
address: smtp.gmail.com | |
tls: true | |
authentication: plain | |
username: foo@example.com | |
password: p@ssw0rd | |
development: | |
<<: *BASE | |
production: | |
<<: *BASE | |
test: | |
<<: *BASE | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment