Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/romaindoyen/sms-vonage
This is a simple SMS API that uses the Vonage API to send SMS messages.
https://github.com/romaindoyen/sms-vonage
flask-api vitejs-react vonage-api
Last synced: about 1 month ago
JSON representation
This is a simple SMS API that uses the Vonage API to send SMS messages.
- Host: GitHub
- URL: https://github.com/romaindoyen/sms-vonage
- Owner: RomainDoyen
- Created: 2024-07-26T14:59:17.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-27T11:49:08.000Z (5 months ago)
- Last Synced: 2024-07-27T13:01:01.770Z (5 months ago)
- Topics: flask-api, vitejs-react, vonage-api
- Language: JavaScript
- Homepage:
- Size: 39.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Intro
This is a simple SMS API that uses the Vonage API to send SMS messages. The frontend is a simple form that allows the user to input a phone number and a message. The backend is a Flask server that receives the form data and sends the SMS message using the Vonage API.
# Backend
## Install
```bash
pip install flask vonage dotenv
```## Run
```bash
python run.py
```# Config .env
```bash
VONAGE_ACCOUNT_SID=your_account_sid
VONAGE_AUTH_TOKEN=your_auth_token
```# Frontend
## Install
```bash
pnpm install
```## Run
```bash
pnpm run dev
```