Coder Social home page Coder Social logo

clonebottraining's Introduction

Template to bootstrap a Botkit project for Cisco Spark

This template regroups a set of good practices:

  • configuration: pass settings either through environment variables on the command line, or by hardcoding some of them in the .env file. Note that env variable are priorized over the envfile if values are found in both places.

  • healthcheck: check if everything is going well by hitting the ping endpoint exposed automatically.

  • skills: organize your bot behaviours by placing 'hear commands', 'convos' and 'events' in the skills directory. The bot comes with a ".commons", "help", "fallback" and "welcome" skills.

Check the "CiscoDevNet Botkit template" repo branches for more advanced templates: Redis, Pluggable branches.

How to run

Assuming you plan to expose your bot via ngrok, you can run this template in a snatch.

  1. Create a Bot Account from the 'Spark for developers' bot creation page, and copy your bot's access token.

  2. Launch ngrok to expose port 3000 of your local machine to the internet:

    ngrok http 3000

    Pick the HTTPS address that ngrok is now exposing. Note that ngrok exposes HTTP and HTTPS protocols, make sure to pick the HTTPS address.

  3. [Optional] Open the .env file and modify the settings to accomodate your bot.

    Note that you can also specify any of these settings via env variables. In practice, the values on the command line or in your machine env will prevail over .env file settings

    To successfully run your bot, you'll need to specify a PUBLIC_URL for your bot, and a Cisco Spark API token (either in the .env settings or via env variables). In the example below, we do not modify any value in settings and specify all configuration values on the command line.

  4. You're ready to run your bot

    From a bash shell:

    git clone https://github.com/CiscoDevNet/botkit-ciscospark-samples
    cd botkit-ciscospark-samples
    cd template
    npm install
    SPARK_TOKEN=0123456789abcdef PUBLIC_URL=https://abcdef.ngrok.io node bot.js

    From a windows shell:

    git clone https://github.com/CiscoDevNet/botkit-ciscospark-samples
    cd botkit-ciscospark-samples
    cd template
    npm install
    set SPARK_TOKEN=0123456789abcdef
    set PUBLIC_URL=https://abcdef.ngrok.io
    node bot.js

    where:

    • SPARK_TOKEN is the API access token of your Cisco Spark bot
    • PUBLIC_URL is the root URL at which Cisco Spark can reach your bot
    • ngrok helps you expose the bot running on your laptop to the internet, type: ngrok http 3000 to launch

clonebottraining's People

Contributors

wazquez avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.