Created
May 21, 2012 23:55
-
-
Save knowtheory/2765479 to your computer and use it in GitHub Desktop.
Sample secrets file for DocumentCloud
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
| # Sensitive API keys and other secret strings. | |
| defaults : &defaults | |
| aws_access_key: string_goes_here | |
| aws_secret_key: string_goes_here | |
| calais_license: string_goes_here | |
| smtp_password: string_goes_here | |
| pixel_ping: string_goes_here | |
| guest_username: string_goes_here | |
| guest_password: string_goes_here | |
| username: string_goes_here | |
| db_password: string_goes_here | |
| development : | |
| <<: *defaults | |
| staging : | |
| <<: *defaults | |
| db_host: address_goes_here | |
| solr_host: address_goes_here | |
| job_end_point: address_goes_here:with_port | |
| central_server: address_goes_here:with_port | |
| test : | |
| <<: *defaults | |
| production : | |
| <<: *defaults | |
| db_host: address_goes_here | |
| solr_host: address_goes_here | |
| job_end_point: address_goes_here:with_port | |
| central_server: address_goes_here:with_port |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment