Skip to content

iamtonymwt/TradingCenter

Repository files navigation

Trading Center

a backend web service for a trading center. It will provide APIs for the frontend to do the following things:

  • Create and manage accounts.
  • Record all balance changes to each of the accounts.
  • Perform a money transfer between 2 accounts.

The programming language is Golang. This whole project is presented in 4 sections:

  1. Designed PostgreSQL DB using DBML, and generated Golang code to interact with DB without deadlock.

  2. Built 7 RESTful HTTP APIs using Gin and wrote stronger tests using Gomock with 100% coverage.

  3. Built Docker image and deployed the app to AWS Kubernetes cluster (EKS) automatically in less than 50s.

  4. Used Redis as message queue, create and send emails to users via Gmail SMTP server.

Setup local development

Install tools

Setup infrastructure

  • Create the bank-network

    make network
  • Start postgres container:

    make postgres
  • Create simple_bank database:

    make createdb
  • Run db migration up all versions:

    make migrateup
  • Run db migration up 1 version:

    make migrateup1
  • Run db migration down all versions:

    make migratedown
  • Run db migration down 1 version:

    make migratedown1

How to generate code

  • Generate schema SQL file with DBML:

    make db_schema
  • Generate SQL CRUD with sqlc:

    make sqlc
  • Generate DB mock with gomock:

    make mock
  • Create a new db migration:

    make new_migration name=<migration_name>

How to run

  • Run server:

    make server
  • Run test:

    make test

Deploy to kubernetes cluster

  • Install nginx ingress controller:

    kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v0.48.1/deploy/static/provider/aws/deploy.yaml
  • Install cert-manager:

    kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.4.0/cert-manager.yaml

About

A High-Performance Backend of a Trading Center

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published