Changeset View
Changeset View
Standalone View
Standalone View
swh/web/config.py
| Show First 20 Lines • Show All 106 Lines • ▼ Show 20 Lines | DEFAULT_CONFIG = { | ||||
| "deposit": ( | "deposit": ( | ||||
| "dict", | "dict", | ||||
| { | { | ||||
| "private_api_url": "https://deposit.softwareheritage.org/1/private/", | "private_api_url": "https://deposit.softwareheritage.org/1/private/", | ||||
| "private_api_user": "swhworker", | "private_api_user": "swhworker", | ||||
| "private_api_password": "some-password", | "private_api_password": "some-password", | ||||
| }, | }, | ||||
| ), | ), | ||||
| "coverage_count_origins": ("bool", False), | |||||
| "e2e_tests_mode": ("bool", False), | "e2e_tests_mode": ("bool", False), | ||||
| "es_workers_index_url": ("string", ""), | "es_workers_index_url": ("string", ""), | ||||
| "history_counters_url": ( | "history_counters_url": ( | ||||
| "string", | "string", | ||||
| ( | ( | ||||
| "http://counters1.internal.softwareheritage.org:5011" | "http://counters1.internal.softwareheritage.org:5011" | ||||
| "/counters_history/history.json" | "/counters_history/history.json" | ||||
| ), | ), | ||||
| ▲ Show 20 Lines • Show All 97 Lines • Show Last 20 Lines | |||||