A web service written in go that validates IBAN numbers.
- Go 1.19
- Postgres 14
- Just
$ go mod download
Make sure your Postgres DB is running and you have the following environment variables set:
DB_HOST=
DB_USER=
DB_PASSWORD=
DB_NAME=
Run the migrations script to create the necessary tables:
just migrate
Run the server:
just run
Build the project:
just Build
$ docker-compose up
$ just deploy