-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
31 lines (24 loc) · 922 Bytes
/
config.py
File metadata and controls
31 lines (24 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Connection Settings
JAMA_CONNECT_URL = "https://instance.jamacloud.com"
USERNAME = "USERNAME"
PASSWORD = "PASSWORD"
# If using oauth, set OAUTH = True, set USERNAME = "CLIENT_ID" and PASSWORD="CLIENT_SECRET"
OAUTH = False
# Input / Output settings
filter_id = 165
# Project's to check sync status against.
# This value should be a list ex: [14]
# To check against mutiple specified projects: ex: [15, 17]
# Use the empty list to check all against all projects ex: []
project_list = []
# if your filter is set to use 'Current Project' then you must supply a project_id. otherwise set to None
filter_project_id = None
# Enter the location for the output.
output_location = "./sync_status.csv"
# CSV Settings
# Output header row in CSV. Must be set to True or False
csv_header = True
# A one character string to separate values.
delimiter = ','
# Logging date time format
log_date_time_format = "%Y-%m-%d %H_%M_%S"