-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.mjs
31 lines (25 loc) · 1.17 KB
/
config.mjs
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
// Google Drive ID for the spreadsheet
export const formResponsesSheetId =
"1KUOXe5SMMaghl_JI_eZghHG18CXok3D6yb1_SHJM0no";
// Tab ID (gid=) for the "ready" tab that has curated memes for publishing
export const readyTabId = "965014117";
// location of the local folder for copies of the uploaded media
export const memeMediaFolder = "meme_media";
// Google Drive API key (read-only, can access publicly-accessible files only)
export const driveApiKey = "AIzaSyAVsxisgH5DPgtN0jJF6Cf0Q9xbSSaBaZU";
// Submission Form URL
export const submissionFormUrl =
"https://docs.google.com/forms/d/e/1FAIpQLSdhi-nky_fICuBD-HKaGsQi_ezukKtU3oVeMulMg0Ra8TCnvw/viewform";
// Sheets containing the hierarchical arrangements for content and template types
export const hierarchiesSheetId = formResponsesSheetId;
export const hierarchiesTabIds = {
memeTypes: "948017538",
templateTypes: "1496259696",
};
// Documents for the glossary
export const contentTypeGlossaryDocId =
"1hT404CLLJxIJqE6jo5OACCff_E4Mpwp7OCwTtUAIogs";
export const peopleGlossaryDocId =
"1W0z1poyuT4Qb_iv1D0MgTeakTEP0SFIyr84qyd7Ew60";
export const templateTypeGlossaryDocId =
"1BmRyd2O6TQAdctw1zk2MnQ6XROwr7xendsLg9gzfymc";