-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparams.sh.example
More file actions
56 lines (44 loc) · 1.46 KB
/
params.sh.example
File metadata and controls
56 lines (44 loc) · 1.46 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/bash
#################################################
# Parameters shared by all file
#
# Service URLs, email addresses
# Adjust as needed and save as "params.sh"
#################################################
# Set data directory
# $DIR is set by main script calling this one
# # Default data directory
# DATADIR="${DIR}/data"
# Custom data directory outside repository
DATADIR="${DIR}/../data"
################################
# Default notification email(s)
################################
# Separate multiple addresses with comma, no spaces
# This value over-ridden if email parameter supplied to option -m
EMAIL_DEF="bob@gmail.com"
EMAIL_DEF="bob@gmail.com,carol@gmail.com,ted@gmailcom"
#########################################
# Default service-specific URLs
# Used by service-specific test scripts
# E.g., tnrs_ck.sh
#########################################
URL_DEF_TNRS="https://tnrsapi.xyz/tnrs_api.php"
#####################################
# List of service base urls used by upsite.sh
################################
# Enter one service per line: name|url
# Delimiter is pipe ("|"), don't use
# elsewhere. Use base url, not route
# No spaces, use underscore instead
SVC_BASE_URLS="
Google|https://www.google.com
TNRS_API|https://tnrsapi.xyz
TNRS_website|https://tnrs.biendata.org
GNRS_website|https://gnrs.biendata.org
"
# Some test urls; all should fail
# SVC_BASE_URLS="
# Bad_url_test|https://www.somenonexistentsite.com
# Bad_url_test2|asdfasdad.com
# "