Skip to content

A service that provides both RESTful and gRPC APIs to simulate the core functionalities of a basic bank.

License

Notifications You must be signed in to change notification settings

ChokeGuy/simple-bank

Repository files navigation

Go Simple Bank

Funtionalities:

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

Simple bank service

APIS:

  1. Create and manage bank accounts, which are composed of owner’s name, balance, and currency.
  2. Record all balance changes to each of the account. So every time some money is added to or subtracted from the account, an account entry record will be created.
  3. Perform a money transfer between 2 accounts. This should happen within a transaction, so that either both accounts’ balance are updated successfully or none of them are.

Setup local development

Install tools

  • Docker desktop

  • Golang

  • Migrate

    $ curl -L https://packagecloud.io/golang-migrate/migrate/gpgkey | apt-key add -
    $ echo "deb https://packagecloud.io/golang-migrate/migrate/ubuntu/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/migrate.list
    $ apt-get update
    $ apt-get install -y migrate
  • DB Docs

    npm install -g dbdocs
    dbdocs login
  • DBML CLI

    npm install -g @dbml/cli
    dbml2sql --version
  • Sqlc

    brew install sqlc
  • Gomock

    go install github.com/golang/mock/mockgen@v1.6.0

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 migratecreate name=<migration_name>

How to run

  • Run server:

    make server
  • Run test:

    make test

About

A service that provides both RESTful and gRPC APIs to simulate the core functionalities of a basic bank.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages