Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.26 KB

README.md

File metadata and controls

36 lines (27 loc) · 1.26 KB

Twilio Virtual Phone

Twilio Virtual Phone Screenshot

How to use ?

Prerequisite :

  1. SQL Database (PostgreSQL)
  2. Cloud Hosting Service (ex. Heroku)

Install Guide :

  1. Create your PostgreSQL database and execute the SQL script file scripts/db_init.sql available in the main folder

  2. Set the below required environment variables in your hosting service :

    Key Description
    DATABASE_URL PostgreSQL Connection String (ex. : postgresql://[user[:password]@][netloc][:port][/dbname][?param1=value1&...])
    REDIS_URL Redis Connection String
    API_KEY Not null Random key to access the application
    TWILIO_ACCOUNT_SID Your Twilio Account SID
    TWILIO_API_KEY Your Twilio API Key
    TWILIO_API_SECRET Your Twilio API Key Secret
  3. Deploy the Node.js application in your hosting service and run following command to build and install the application.

    npm install
  4. Run the following command to start the application

    npm start

One-Click deploy to Heroku

Deploy