/simple-bank

Simple REST bank api

Primary LanguageGoMIT LicenseMIT

simple-bank

Repository Top Language Github Open Issues GitHub contributors

Simple Bank

About

A test project that is created in the process of learning, the purpose of which is to create a simple banking application and study various technologies that may be useful in the development.

Usefull commands

$> make postgres     # run postgres instance in docker
$> make createdb     # create database via createdb command
$> make dropdb       # drop database via dropdb command
$> make migrateup    # run migrate up
$> make migratedown  # run migrate down
$> make sqlc         # generate sqlc code
$> make mock         # generate mock code for store
$> make test         # run tests
$> make lint         # run linter
$> make cloc         # show project line number
$> make stop         # stop all containers