-
Notifications
You must be signed in to change notification settings - Fork 0
/
Weekends.js
29 lines (25 loc) · 895 Bytes
/
Weekends.js
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
const scriptProperties = PropertiesService.getScriptProperties();
const server = scriptProperties.getProperty('cred_server');
const port = parseInt(scriptProperties.getProperty('cred_port'), 10);
const dbName = scriptProperties.getProperty('cred_dbName');
const username = scriptProperties.getProperty('cred_username');
const password = scriptProperties.getProperty('cred_password');
const url = `jdbc:mysql://${server}:${port}/${dbName}`;
const apidomain = scriptProperties.getProperty('cred_apidomain');
const apiusername = scriptProperties.getProperty('cred_apiusername');
const apipassword = scriptProperties.getProperty('cred_apipassword');
function readData() {
volunteerData();
readFood();
readGear();
readTransport();
readBuddy();
readTradSkills();
readSportSkills();
readSportSkillShare();
readTradSkillShare();
readEvents();
badgesData();
readAdmin();
readGrades();
}