The Diagonal Service Connector connect Hubspot and DocuSign together. And it manage the import from SaltyBrands Leads.
The Diagonal Service Connector have different functions.
- Create a DocuSign Contract, if is a change in an HubSpot Deal
- React on the DocuSign Contract changes and save them in HubSpot under the Deal
- Import the SaltyBrands Leads to Hubspot
- Renew the DocuSign token in an interval
After you run the app you can visit: localhost:7125/administrator or domain.com/administrator
Standard-User: admin@domain.com Password: 1234
- clone the repo
git clone https://github.com/Spottel/Diagonal-Service-Connector
- cd into cloned repo
cd repo
- install dependencies
npm install
-
import sql data (diagonal_service_connector.sql)
-
set .env variables for the sql connection
-
run the app
npm run start
- setup user
npm run initUser --username=admin@admin.de --password=1234
-
import sql data (diagonal_service_connector.sql)
-
run the app
docker run -d --name=diagonalservice -p 17400:7125 -v /path/to/docker.sock:/var/run/docker.sock -e DB_HOST='localhost' -e DB_USER='user' -e DB_PASSWORD='password' -e DB_NAME='name' --restart unless-stopped spottel/diagonalservice-connector:latest
- setup user
docker exec diagonalservice sh -c 'npm run initUser --username=admin@admin.de --password=1234'
Log Screen
Setting Screen
MIT License
Copyright © 2023 Frank Schünemann
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.