https://github.com/hubspot/private-app-starter
Boilerplates apps using HubSpot API
https://github.com/hubspot/private-app-starter
Last synced: 9 months ago
JSON representation
Boilerplates apps using HubSpot API
- Host: GitHub
- URL: https://github.com/hubspot/private-app-starter
- Owner: HubSpot
- License: apache-2.0
- Created: 2021-06-29T14:24:07.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2023-02-26T00:20:35.000Z (over 3 years ago)
- Last Synced: 2024-04-26T15:37:05.084Z (about 2 years ago)
- Language: PHP
- Size: 243 KB
- Stars: 10
- Watchers: 6
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# private-app-starter
This is a sample app for demonstrating the HubSpot API [client libraries](https://developers.hubspot.com/docs/api/overview).
## How to run locally
1. Copy the .env.template file into a file named .env in the folder of the language you want to use. For example:
```bash
cp node/.env.template node/.env
```
2. Paste your Private App Access Token as the value for ACCESS_TOKEN in .env
3. Follow the language instructions on how to run. For example, if you want to run the Node server:
```
cd node # there's a README in this folder with instructions
npm install
npm start
```
## Supported languages
* [JavaScript (Node)](node/README.md)
* [Python](python/README.md)
* [Php](php/README.md)
* [Ruby](ruby/README.md)