/portaone-addonmart-vonage-sms

A module for PortaOne Add-On Mart that allows sending SMS messages using Vonage (ex-Nexmo) API

Primary LanguagePythonMIT LicenseMIT

Add-On Mart module for sending SMS via Vonage (Nexmo) API

Introduction

It is a Google Cloud function that will serve as a part of PortaOne Add-On Mart, allowing telecom operators to send SMS messages from their PortaSwitch system via Vonage.

Debugging in VS Code

Add the following configuration into your launch.json

{
    "name": "Python: Run Functions Framework",
    "type": "python",
    "request": "launch",
    "module": "functions_framework",
    "args": ["--target", "send_message", "--debug"],
    "envFile": "${workspaceFolder}/.env",
    "console": "integratedTerminal",
    "cwd": "${workspaceFolder}"
}