Last active
December 25, 2015 07:09
-
-
Save otherjohn/6937443 to your computer and use it in GitHub Desktop.
sample CASinoApp yml files
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
production: | |
frontend: | |
sso_name: 'CASino' | |
footer_text: 'Powered by <a href="http://rbcas.com/">CASino</a>' | |
authenticators: | |
my_funny_sql_database: | |
authenticator: "ActiveRecord" | |
options: | |
connection: | |
adapter: "postgresql" | |
host: "localhost" | |
username: "wushcas_production" | |
password: "NADA" | |
database: "NADA" | |
table: "users" | |
username_column: "username" | |
password_column: "password" | |
extra_attributes: | |
email: "emain" | |
fullname: "name" |
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
development: | |
adapter: postgresql | |
encoding: unicode | |
database: WushCAS | |
pool: 5 | |
username: WushCAS | |
min_messages: warning | |
production: | |
adapter: postgresql | |
encoding: unicode | |
database: WushCAS | |
pool: 5 | |
username: WushCAS | |
password: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment