ci_secrets.example.py 535 Bytes
Newer Older
1 2 3
mail_server_password = "change me !"

coops_mails = {
4 5 6
    'lacagette': 'change me on preprod only !',
    'supercafoutch': 'change me on preprod only !',
    'graoucoop': 'change me on preprod only !'
7 8
}

9 10 11 12 13 14
coops_usernames = {
    'lacagette' : 'Antonin',
    'supercafoutch' : 'Marin',
    'graoucoop' : 'Julien'
}

15 16 17 18 19
coops_preprod_urls = {
    'lacagette': 'https://preprod.odoo.lacagette-coop.fr',
    'supercafoutch': 'https://preprod.odoo.supercafoutch.cooperatic.fr/',
    'graoucoop': 'https://preprod.odoo.graoucoop.cooperatic.fr'
}