jambonz / create-jambonz-app

Scaffold a jambonz webhook application using the Node.js SDK
2 stars 2 forks source link

create-jambonz-app

Usage: npx create-jambonz-app [options] project-name

Options:
  -h, --help                        display help for command
  -s, --scenario <scenarios..>      list the scenarios you want to implement or 'all' (default: ["tts", "dial"])
  -v, --version                     display the current version

The following scenarios are available:

Example:

$ npx create-jambonz-app --scenarios 'dial, auth, tts' my-app

Creating a new jambonz app in /Users/perpich/test/my-app
Installing packages...

After that, edit the my-app/ecosystem.config.js file to set necessary environment variables for the webhooks and then start your app


cd my-app
edit ecosystem.config.js
node app.js
```bash