Build Status Gem Version GitHub version Dependency Status Code Climate

t2-airtime

T2-Airtime client, t2_airtime.

T2-Airtime is a Ruby gem providing a proxy cache and a REST API to TransferTo Airtime service.

Installation

Install as a Ruby gem

gem install t2_airtime

Using Docker - alternative if you don't install ruby or installation not work for you

Download image:

docker pull voxbox/t2_airtime

Export your secrets:

export T2_SHOP_USER=<your_username>
export T2_AIRTIME_KEY=<your_token>

Export the host allowed to access the API (CORS):

export CORS_ORIGIN=<your_frontend_address>

Run:

docker run -d \
  --name t2_airtime \
  -p 3000:3000 \
  -e T2_SHOP_USER \
  -e T2_AIRTIME_KEY \
  -e CORS_ORIGIN \
  voxbox/t2_airtime
docker logs t2_airtime -f  

Setup Transfer-To credentials

  1. Make sure you are a registered user of Transfer-To.
  2. Enable Two Factor Authentication (2FA) in your Transfer-To Shop Security Center section
  3. Retrieve API key (token) created by Transfer-To Shop.
  4. Export your secrets as an environment variables:
export T2_SHOP_USER=<your_username>
export T2_AIRTIME_KEY=<your_token>

Development

  1. If needed, install bundler:

    $ gem install bundler
    
  2. Clone the repo:

    $ git clone [email protected]:matteolc/t2_airtime.git
    $ cd t2_airtime
    
  3. Install dependencies:

    $ bundle install
    

Test

Inside the t2_airtime repository directory run:

$ bundle exec rspec

License

Copyright 2015-17 (c) Matteo La Cognata

Released under MIT license. See LICENSE file for further details.