All Projects → SAPConversationalAI → starter-NodeJS

SAPConversationalAI / starter-NodeJS

Licence: MIT license
Recast.AI official starter-kit for NodeJS

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to starter-NodeJS

Meteor Azure
Automate Meteor deployments on Azure App Service
Stars: ✭ 69 (+213.64%)
Mutual labels:  deployment, hosting
Host
Expose your LocalHost with this tool
Stars: ✭ 268 (+1118.18%)
Mutual labels:  hosting, ngrok
The forge
Our groundbreaking, lightning fast PWA CLI tool
Stars: ✭ 70 (+218.18%)
Mutual labels:  deployment, hosting
Meteor Google Cloud
Automate Meteor deployments on Google Cloud App Engine Flexible
Stars: ✭ 32 (+45.45%)
Mutual labels:  deployment, hosting
Meli
Platform for deploying static sites and frontend applications easily. Automatic SSL, deploy previews, reverse proxy, and more.
Stars: ✭ 2,125 (+9559.09%)
Mutual labels:  deployment, hosting
kuberay
A toolkit to run Ray applications on Kubernetes
Stars: ✭ 146 (+563.64%)
Mutual labels:  deployment
useful-playbooks
🚚 Useful Ansible playbooks for easily deploy your website or webapp to absolutely fresh remote virtual server and automation many processes. Only 3 minutes from the playbook run to complete setup server and start it.
Stars: ✭ 52 (+136.36%)
Mutual labels:  deployment
Cloud-PAW-Management
Simplify PAW and SPA for the masses, unify the MS Internal, and public PAW specs, and expedite deployment to ~5min or less.
Stars: ✭ 45 (+104.55%)
Mutual labels:  deployment
gcloud-deploy-tutorial
How to continuously deploy a Full Stack React +Node.js +MySql App to Google Cloud Compute Engine
Stars: ✭ 19 (-13.64%)
Mutual labels:  deployment
monitoring-rancher
🤠How to Set up Rancher Server Monitoring with TIG Stack?
Stars: ✭ 22 (+0%)
Mutual labels:  deployment
cdk-ecr-deployment
A CDK construct to deploy docker image to Amazon ECR
Stars: ✭ 51 (+131.82%)
Mutual labels:  deployment
server-instant-start
Spin up a fully configured Ubuntu/Debian-based web server in under 10 minutes with Nginx (w/ HTTPS), PHP FPM, Postfix, OpenDKIM, MySQL/MariaDB, PostgreSQL, and more. Deploy your web application too.
Stars: ✭ 17 (-22.73%)
Mutual labels:  deployment
configurator
Synchronize and Version Control ConfigMaps & Secrets across Deployment Rollouts.
Stars: ✭ 68 (+209.09%)
Mutual labels:  deployment
buffalo-heroku
Archived use github.com/gobuffalo/buffalo-heroku
Stars: ✭ 16 (-27.27%)
Mutual labels:  deployment
batou
batou is a universal, fractal deployment utility using Python.
Stars: ✭ 37 (+68.18%)
Mutual labels:  deployment
extensiveautomation-server
Extensive Automation server
Stars: ✭ 19 (-13.64%)
Mutual labels:  deployment
evolution
Evolution process of The Falco Project
Stars: ✭ 37 (+68.18%)
Mutual labels:  deployment
django-rok
Public url for your local django web server
Stars: ✭ 19 (-13.64%)
Mutual labels:  ngrok
librephotos-docker
You can find here the Dockerfiles for the automated build process of LibrePhotos.
Stars: ✭ 81 (+268.18%)
Mutual labels:  deployment
web-fonts-repository
A simple webfont hosting. Google Fonts alternative for your own fonts.
Stars: ✭ 99 (+350%)
Mutual labels:  hosting

Usage Documentation Getting Started on Recast.AI License

Recast.AI starter kit NodeJS

A starter kit for developing bots on the Recast.AI platform.

Note: This project is currently in beta version and can be modified at any time.

Requirements

Node version

We recommend to use at least `node v6

Recast.AI account

Create an account on the Recast.AI platform and follow this quick tutorial to create your first bot on the interface.

Usage

Installation

git clone https://github.com/RecastAI/starter-NodeJS.git my-bot && cd my-bot

using npm npm install

or yarn yarn

Create the config file

Create a config.js file in the src directory of your project, copy/paste these lines:

process.env.PORT = '5000'
process.env.REQUEST_TOKEN = ''
process.env.LANGUAGE = ''
// Write your own configuration here:
// ...

Complete the Recast.AI process.env.REQUEST_TOKEN and process.env.LANGUAGE: go to your bot page, click on the settings icon (on the right side of your screen), and copy the request_token. Then, set the default language of your bot: 'en', 'fr'... or leave this field empty for auto-detection language

Run locally

using npm npm start

using yarn yarn start

  • download ngrok
  • launch it: ./ngrok http 5000
  • copy the url ngrok gave and paste it in the Recast.AI interface: Go to your bot page, click on the RUN tab and edit your current bot webhook
  • Chat with your bot on the channels you've configured ;)

Documentation

Code Documentation
Receiving messages The Recast.AI SDK - connect
Sending messages The Recast.AI SDK - connect
Rich messaging See the different payload message

About your config file

The src/config.js file will never be pushed to your repository, to keep your configuration private.

More

You can view the whole API reference at man.recast.ai. You can follow us on Twitter at @recastai for updates and releases.

Getting started with Recast.AI

We build products to help enterprises and developers have a better understanding of user inputs.

  • NLP API: a unique API for text processing, and augmented training.
  • Bot Building Tools: all you need to create smart bots powered by Recast.AI's NLP API. Design even the most complex conversation flow, use all rich messaging formats and connect to external APIs and services.
  • Bot Connector API: standardizes the messaging format across all channels, letting you connect your bots to any channel in minutes.

Learn more about:

API Documentation Discover the platform First bot tutorial Advanced NodeJS tutorial Advanced Python tutorial

License

Copyright (c) [2017] Recast.AI

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].