### Install Dependencies Source: https://github.com/probiruk/salesforce-notion-integeration/blob/master/README.md Installs the necessary Node.js dependencies for the Salesforce-Notion integration project. ```bash npm install ``` -------------------------------- ### Start Integration Source: https://github.com/probiruk/salesforce-notion-integeration/blob/master/README.md Starts the Salesforce-Notion integration script, which migrates Salesforce object data to Notion. ```bash npm start ``` -------------------------------- ### Docker Build Source: https://github.com/probiruk/salesforce-notion-integeration/blob/master/README.md Builds a Docker container for the Salesforce-Notion integration project. ```bash npm run docker-build ``` -------------------------------- ### Docker Run Source: https://github.com/probiruk/salesforce-notion-integeration/blob/master/README.md Runs the Docker container for the Salesforce-Notion integration project. ```bash npm run docker-run ``` -------------------------------- ### Code Formatting Source: https://github.com/probiruk/salesforce-notion-integeration/blob/master/README.md Formats the project code using Prettier. It's recommended to use the Prettier VS Code extension for consistent formatting. ```bash npm run format ``` -------------------------------- ### Development Mode Source: https://github.com/probiruk/salesforce-notion-integeration/blob/master/README.md Runs the integration script in development mode, automatically restarting on file changes. ```bash npm run dev ``` -------------------------------- ### Environment Variables Configuration Source: https://github.com/probiruk/salesforce-notion-integeration/blob/master/README.md Configuration for environment variables required for the Salesforce-Notion integration, including Notion and Salesforce API credentials and database IDs. ```dotenv NOTION_TOKEN=your_notion_api_key SALESFORCE_USERNAME=your_salesforce_username SALESFORCE_PASSWORD=your_salesforce_password SALESFORCE_TOKEN=your_salesforce_security_token LEAD_DATABASE_ID=your_lead_database_notion_id OPPORTUNITY_DATABASE_ID=your_opportunity_database_notion_id ``` -------------------------------- ### Type Checking Source: https://github.com/probiruk/salesforce-notion-integeration/blob/master/README.md Performs type checking on the project using the TypeScript compiler. ```bash npm run typecheck ``` -------------------------------- ### Leads Notion Table Fields Source: https://github.com/probiruk/salesforce-notion-integeration/blob/master/README.md Defines the schema for the 'Leads' table in Notion, mapping Salesforce fields to Notion field types. ```json { "Id": "Title", "Name": "Text", "Title": "Text", "Company": "Text", "Phone": "Text", "Email": "Text", "Status": "Text" } ``` -------------------------------- ### Opportunities Notion Table Fields Source: https://github.com/probiruk/salesforce-notion-integeration/blob/master/README.md Defines the schema for the 'Opportunities' table in Notion, mapping Salesforce fields to Notion field types. ```json { "Id": "Title", "Name": "Text", "Amount": "Number", "StageName": "Text", "Probability": "Number", "CloseDate": "Text" } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.