We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6711fc commit b373797Copy full SHA for b373797
scripts/config-getter.py
@@ -5,11 +5,12 @@
5
6
import requests
7
from mailman.testing.documentation import dump_json
8
+import os
9
10
hostname="lists.boost.org"
11
port_number="8001"
12
rest_user="restadmin"
-rest_password=""
13
+rest_password=os.environ['REST_PASSWORD']
14
15
if not rest_password:
16
print("please set rest_password. Exiting.")
scripts/config-setter.py
0 commit comments