More syntax modernization.
This commit is contained in:
parent
a44d82f494
commit
a97ce78813
2 changed files with 4 additions and 4 deletions
|
@ -10,7 +10,7 @@ config = {
|
|||
"badges_global": {
|
||||
|
||||
# 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
|
||||
# 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
|
||||
# to fas usernames so it can act appropriately on certain message types.
|
||||
"fas_credentials": {
|
||||
"username": "${fedoraDummyUser}",
|
||||
"password": "${fedoraDummyUserPassword}",
|
||||
"username": "{{fedoraDummyUser}}",
|
||||
"password": "{{fedoraDummyUserPassword}}",
|
||||
},
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
config = {
|
||||
'datanommer.sqlalchemy.url': 'postgresql://${datanommerDBUser}:${datanommerDBPassword}@db-datanommer/datanommer',
|
||||
'datanommer.sqlalchemy.url': 'postgresql://{{datanommerDBUser}}:{{datanommerDBPassword}}@db-datanommer/datanommer',
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue