podverse-external-services
v5.0.3
Published
A collection of helpers for interacting with 3rd party external services, like AWS and Podcast Index API.
Downloads
12
Readme
podverse-external-services
A collection of helpers for interacting with 3rd party external services, like AWS and Podcast Index API.
Dev Setup
Environment Variables
The environment variables for this module must be set within the app that consumes this module (ex. podverse-api
or podverse-workers
). See podverse-external-services/config/index.ts
for a list of the env vars expected.
Local Dev Workflow
Podverse uses many modules that are maintained in separate repos, and they need to be linked and running for a local dev workflow. Please read the podverse-ops/dev/local-dev-setup.md
file to set up the required dependencies and module linking.
Running Locally
Install the node_modules:
npm install
Then to build:
npm run build
Or if you want the app to auto-build on saved changes:
npm run build:watch
Publishing
To publish your changes to npm, increment the version number is package.json
then run npm publish
.