This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Configuration - Update these values if needed | |
| const ZOTERO_API_KEY = ''; | |
| const ZOTERO_USER_ID = ''; | |
| const GMAIL_LABEL = 'reMarkable/Processed'; | |
| const SEARCH_QUERY = 'to:mygmail+zotero@gmail.com from:my@remarkable.com has:attachment'; | |
| const WEBDAV_URL = ''; | |
| const WEBDAV_USERNAME = ''; | |
| const WEBDAV_PASSWORD = ''; | |
| const SEND_FAILURE_NOTIFICATIONS = true; // Set to false to disable email notifications |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const GMAIL_LABEL_NAME = 'NotionToSync'; | |
| const SYNCED_LABEL = 'SyncedToNotion'; | |
| const GDRIVE_FOLDER_ID = ''; // optional; leave empty to upload directly to Notion | |
| const NOTION_DATABASE_ID = ''; | |
| const NOTION_SECRET = ''; | |
| const NOTION_VERSION = '2022-06-28'; | |
| // Direct-upload cap per Notion guide (multi-part required >20MB). :contentReference[oaicite:1]{index=1} | |
| const MAX_DIRECT_UPLOAD_BYTES = 20 * 1024 * 1024; |