https://github.com/andhikayuana/qiscus-web-sample
sample qiscus sdk
https://github.com/andhikayuana/qiscus-web-sample
Last synced: 7 months ago
JSON representation
sample qiscus sdk
- Host: GitHub
- URL: https://github.com/andhikayuana/qiscus-web-sample
- Owner: andhikayuana
- Created: 2019-04-16T03:34:44.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-16T03:37:31.000Z (over 6 years ago)
- Last Synced: 2025-01-18T03:45:52.108Z (9 months ago)
- Language: JavaScript
- Size: 14.4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Qiscus Chat SDK Web Sample Apps

To understand Qiscus Chat SDK easier, we provide you Sample Apps. Inside
this sample app, you can see how Qiscus Chat SDK can power your app.## Requirement
To run all of the sample code, you need to install Git and NodeJS. Git will be
used to clone the repository so you can play around with the code locally.
NodeJS is needed to install and resolve dependencies to run the Sample App. You
can refer to their respected page for more detail installing them both.* [git-scm.com](http://git-scm.com)
* [nodejs.org](http://nodejs.org)## Cloning Sample App
You can download sample directly from our github at
[github.com/qiscus/qiscus-sdk-web-sample](https://github.com/qiscus/qiscus-sdk-web-sample)
or if you already installed Git you can just clone directly from your
command line.```bash
$ git clone https://github.com/qiscus/qiscus-sdk-web-sample.git
```
After cloning finished, you will need to create simple server to run the sample
app. In the example below, we use `http-server` from nodejs package manager to
serve Sample App locally.```bash
# Install http-server from npm globally
$ npm install http-server -g
# Choose folder and run Web SDK Sample
$ cd qiscus-sdk-web-sample
$ http-server
```
If you want your Sample App and Sample Dashboard running with your own APP ID, you can change the APP ID and add Sample Dashborad URL in file vars.js which is located at assets/js/vars.js
Direct to [Sample Dashboard](https://github.com/qiscus/dashboard-sample) to learn more how to use Sample App with your own Dashboard.