More syntax modernization.

This commit is contained in:
Ralph Bean 2014-01-08 16:29:20 +00:00
parent a44d82f494
commit a97ce78813
2 changed files with 4 additions and 4 deletions

View file

@ -10,7 +10,7 @@ config = {
"badges_global": { "badges_global": {
# This is a sqlalchemy URI that points to the tahrir DB. # This is a sqlalchemy URI that points to the tahrir DB.
"database_uri": "postgresql://${tahrirDBUser}:${tahrirDBPassword}@db-tahrir/tahrir", "database_uri": "postgresql://{{tahrirDBUser}}:{{tahrirDBPassword}}@db-tahrir/tahrir",
# This is a set of data that tells our consumer what Open Badges Issuer # This is a set of data that tells our consumer what Open Badges Issuer
# should be kept as the issuer of all the badges we create. # should be kept as the issuer of all the badges we create.
@ -26,7 +26,7 @@ config = {
# The badges backend (fedmsg-hub) uses this to build a fas cache of ircnicks # The badges backend (fedmsg-hub) uses this to build a fas cache of ircnicks
# to fas usernames so it can act appropriately on certain message types. # to fas usernames so it can act appropriately on certain message types.
"fas_credentials": { "fas_credentials": {
"username": "${fedoraDummyUser}", "username": "{{fedoraDummyUser}}",
"password": "${fedoraDummyUserPassword}", "password": "{{fedoraDummyUserPassword}}",
}, },
} }

View file

@ -1,3 +1,3 @@
config = { config = {
'datanommer.sqlalchemy.url': 'postgresql://${datanommerDBUser}:${datanommerDBPassword}@db-datanommer/datanommer', 'datanommer.sqlalchemy.url': 'postgresql://{{datanommerDBUser}}:{{datanommerDBPassword}}@db-datanommer/datanommer',
} }