Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/desmondsanctity/twilio-translate
https://github.com/desmondsanctity/twilio-translate
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/desmondsanctity/twilio-translate
- Owner: DesmondSanctity
- Created: 2023-06-01T04:06:09.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-01T16:32:12.000Z (about 1 year ago)
- Last Synced: 2024-05-30T02:18:00.389Z (7 months ago)
- Language: JavaScript
- Size: 88.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## twilio-translate
A utility tool for translating languages foreign to English on the fly using Twilio WhatsApp and AWS Translate service.## running the project
- Clone the repo to your local machine
```bash
git clone https://github.com/DesmondSanctity/twilio-translate.git
```
- Run the installation command to install all the packages needed
```bash
npm install
```
- Create a `.env` file and populate the following values with your values. The example `.env` is shown below:
```bash
TWILIO_ACCOUNT_SID=XXXXX
TWILIO_AUTH_TOKEN=XXXXX
MY_AWS_SECRET_ACCESS_KEY=XXXXX
MY_AWS_ACCESS_KEY_ID=XXXXX
MY_AWS_REGION=XXXXX
```
- - Run the project using the command below:
```bash
node index.js
```
- Follow this article to understand the process taken to build this app and build along. [https://www.twilio.com/blog/build-translation-bot-twilio-whatsapp-aws-translate](https://www.twilio.com/blog/build-translation-bot-twilio-whatsapp-aws-translate)