Git Product home page Git Product logo

azatransact's Introduction

Ruby version

3.1.2

Database creation

First install PostgreSQL to your machine run rails db:create to create db, followed by rails db:migrate to migrate all tables

How to run the test suite

bundle exec rspec to run all tests

Services (job queues, cache servers, search engines, etc.)

CurrencyConverter For converting input amount to output currency value

TokenDecoder For decoding JWT

TokenGenerator For generating JWT

Endpoints

Transactions:

POST: /transactions

For creating new transactions

Body:

{
	"transaction" : {
		"input_amount": 120000,
		"input_currency": "NGN",
		"output_currency": "USD"
	}
}

output_amount is optional. If given the action will skip calling the external currency converter API and simply record give value to the database.

Header:

{ "Authorization" => "Bearer #JWTtoken" }

GET: /transactions/

list all transactions in the system

GET: /transactions/:id

get the specific transaction by ID

Users:

POST: /users

Register a new user

Body:

{
	"user": {
		"email": "[email protected]",
		"password": "123456",
    "first_name": "Austine",
    "last_name": "Amah"
	}
}

first_name and last_name are optional

POST: /user_token

Login user

Body:

{
	"auth": {
		"email": "[email protected]",
		"password": "123456"
	}
}

azatransact's People

Contributors

austinea avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.