KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
react-programmable-chat
★ 8
Open GitHub ↗
React Programmable Chat
Download README (.md)
Explore Similar Repositories
ClassRoomExamples
:
No description available.
bioinformatics-pipeline
:
bioinformatics of mine and others
crm-oauth2-jwt
:
Spring MVC REST API with Spring Security, OAuth2, and JWT
Precise-hand-guiding-for-KUKA-iiwa-robot
:
No description available.
passport-docusign
:
The official DocuSign Passport package
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
react-programmable-chat
?
Download (.md)
# React Programmable Chat  This demo application was created as a supplement to a post on the [Twilio blog](https://www.twilio.com/blog). ## Required Credentials * Account SID: [Twilio Console](https://www.twilio.com/console). * API Key & Secret: [Twilio Console – API Keys](https://www.twilio.com/console/runtime/api-keys). * Chat Service SID: [Twilio Console – Chat Dashboard](https://www.twilio.com/console/chat/dashboard). ## Setting Up The Application **Clone the repository:** ``` git clone https://github.com/kevinthompson/react-programmable-chat.git ``` **Create your `.env` file:** ``` cd react-programmable-chat cp .env.sample .env ``` **Define your environment variables:** ``` TWILIO_ACCOUNT_SID= TWILIO_API_KEY= TWILIO_API_SECRET= TWILIO_CHAT_SERVICE_SID= ``` **Install application dependencies:** ``` npm install ``` **Start the token server in one terminal instance:** ``` node server.js ``` **Start the React application build process in another terminal instance:** ``` npm start ```