Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iphytech/phone-verification-with-authy
https://github.com/iphytech/phone-verification-with-authy
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/iphytech/phone-verification-with-authy
- Owner: Iphytech
- Created: 2019-10-13T10:14:38.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T15:17:37.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T15:56:24.280Z (over 1 year ago)
- Language: Ruby
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rails Phone Number Verification with Authy
This application is an example of performing phone number verification using the [Authy Verification API](https://www.twilio.com/docs/api/authy/authy-phone-verification-api).
## Running the application
To run it you will need:
* [A Twilio account](https://www.twilio.com/try-twilio)
* [An Authy App which you can create in the Twilio console](https://www.twilio.com/console/authy/applications), you'll need the API key### Getting started
Clone this repo and install the dependencies:
```bash
git clone https://github.com/Iphytech/phone-verification-with-Authy.git
cd phone-verification-with-Authy
bundle install
```Add your credentials to the config. Start by copying `config/env.yml.example` to `config/env.yml`. Then fill in your Authy app API key in `config/env.yml`.
### Run the application
To run the application, start it as a normal Rails app:
```bash
rails server
```Then visit [http://localhost:3000](http://localhost:3000).