Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

Commit 660bcba

Browse files
committed
Initial commit
0 parents  commit 660bcba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+26610
-0
lines changed

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
npm-debug.log

.env.example

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
TWILIO_ACCOUNT_SID=ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
2+
3+
# The Twilio number for making outbound and receiving inbound calls
4+
# Purchase a Twilio phone number in the console
5+
# https://www.twilio.com/console/phone-numbers/search
6+
TWILIO_CALLER_ID=+1XXXYYYZZZZ
7+
8+
# SID of your TwiML Application
9+
# Create a new TwiML app in the console
10+
# https://www.twilio.com/console/voice/twiml/apps
11+
TWILIO_TWIML_APP_SID=APXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
12+
13+
# Your REST API Key information
14+
# Create a new key in the console (the TWILIO_API_KEY will be the SID shown starting with 'SK')
15+
# https://www.twilio.com/console/project/api-keys
16+
TWILIO_API_KEY=SKXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
17+
TWILIO_API_SECRET=XXXXXXXXXXXXXXXXX

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
public/**/*.js

.eslintrc.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
extends: google
2+
parserOptions:
3+
ecmaVersion: 6
4+
rules:
5+
linebreak-style: 0

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
open-pull-requests-limit: 10

.github/workflows/nodejs.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: Node.js
5+
6+
on:
7+
push:
8+
branches: [master, next]
9+
pull_request:
10+
branches: [master, next]
11+
12+
jobs:
13+
build:
14+
runs-on: ${{ matrix.platform }}
15+
16+
strategy:
17+
matrix:
18+
node-version: [10.x, 12.x]
19+
platform: [windows-latest, macos-latest, ubuntu-latest]
20+
21+
steps:
22+
- uses: actions/checkout@v2
23+
- name: Use Node.js ${{ matrix.node-version }}
24+
uses: actions/setup-node@v1
25+
with:
26+
node-version: ${{ matrix.node-version }}
27+
- run: npm ci
28+
- run: npm test
29+
env:
30+
CI: true
31+
TWILIO_ACCOUNT_SID: ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
32+
TWILIO_TWIML_APP_SID: APXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
33+
TWILIO_CALLER_ID: +1XXXYYYZZZZ
34+
TWILIO_API_KEY: SKXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
35+
TWILIO_API_SECRET: XXXXXXXXXXXXXXXXX

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.DS_Store
2+
node_modules
3+
npm-debug.log
4+
.env
5+
.tool-versions

.mergify.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
pull_request_rules:
2+
- name: automatic merge for Dependabot pull requests
3+
conditions:
4+
- author=dependabot-preview[bot]
5+
- status-success=build (10.x, macos-latest)
6+
- status-success=build (12.x, macos-latest)
7+
- status-success=build (10.x, windows-latest)
8+
- status-success=build (12.x, windows-latest)
9+
- status-success=build (10.x, ubuntu-latest)
10+
- status-success=build (12.x, ubuntu-latest)
11+
actions:
12+
merge:
13+
method: squash

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Ignore artifacts:
2+
build
3+
coverage

.prettierrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

0 commit comments

Comments
 (0)