Code Monkey home page Code Monkey logo

backend's Introduction

Backend README

Running with Docker Compose:

  1. Ensure Docker and Docker Compose are installed on your system.

  2. Clone this repository:

    git clone [email protected]:pramudya3/backend.git && cd backend

    This command clones the repository from the specified GitHub URL and then navigates into the cloned repository directory.

  3. Build and start the containers using Docker Compose:

    docker-compose up --build
  4. Access the services through the defined endpoints.

Services:

  1. Account Service

    • Running at: http://localhost:2000

    • Users API endpoints:

      • POST /signup: Create a new user account.

        • JSON payload:
          {
            "name": "name",
            "username": "username",
            "email": "[email protected]",
            "password": "pass123"
          }
      • POST /login: Log in to an existing user account.

        • JSON payload:
         {
           "id": 1,
           "password": "pass123"
         }

        Response payload:

        {
         "data": "access-token"
        }
      • GET user/logout: Log out from the current user session, protected by JWT Token

        • Bearer token: access-token
      • GET /user/my-profile: Get user information user, protected by JWT Token

        • Bearer token: access-token
    • Payment Account Endpoints:

      • POST /payment-account: Create a payment account associated with a user.
        • Bearer token: access-token
        • JSON payload:
        {
          "type":"Debit", // {Debit, Credit}
          "balance":50000 //  
        }
    • Payment History Endpoints:

      • GET /payment-history: Retrieve payment history for a user, protected by JWT token
        • Bearer token: access-token
  2. Payment Service

    • Running at: http://localhost:3000

    • APIs Endpoints:

      • POST /send: Send money to another user.
        • Bearer token: access-token

        • JSON payload:

          {
            "to_user_id": 2,
            "amount": 50000,
            "payment_method":"Debit"
          }
      • POST /withdraw: Withdraw money from the user's account, protected by JWT token
        • Bearer token: access-token
        • JSON payload:
          {
            "amount":5000,
            "payment_method":"Debit"
          }

Tech Stack:

  • Golang
  • Supertokens
  • GORM
  • PostgreSQL
  • Gin Gonic

backend's People

Contributors

pramudya3 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.