firebase-pipedrive
v1.7.19
Published
Add Firebase records as Pipedrive CRM leads in real-time
Downloads
12
Readme
🔥🚰 Firebase Pipedrive
Automagically post new records from a Firebase Cloud Firestore database as Pipedrive CRM leads in real-time using a Node.js script. The script listens to changes to the database using the onSnapshot
method and uses the Pipedrive API to add new contacts and leads.
⭐ Getting started
- Fork this repository
- Add required repository secrets or keys in the configuration file
- Run the Node.js script
⚙️ Configuration
Just adding the environment variables in sufficient to get started, but you additionally configure the name and the avatar of the bot too.
Environment variables
Locally, environment variables are loaded from a .env
file.
FIREBASE_SERVICE_ACCOUNT_KEY
is the Firebase Service Account Key in JSON formatFIREBASE_DATABASE_URL
is the Firebase Cloud Firestore database URL, e.g., https://example.firebaseio.comAPI_KEY
is the API token from Pipedrive
Deployment
Run the script using ts-node
:
npm run run
Compile TypeScript and run Node.js script:
npm run build && npm run start