backend

module
v0.0.0-...-5d322a5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 27, 2023 License: MIT

README

Backend

The backend is written in Go and split into several smaller parts:

Context map

The Context map is a way we can visualize how different Bouded Contexts interracts with each other. I decided to use more technical variant of it to better visualize how those relations look like.

graph TD;
    Cart-- Reads info about product details -->ProductCatalog;

Requirements

To be able to run the project you have to have Go installed. By default, it works with an postgres database implementation. For further configuration credentials and so on please go to the web page.

Running tests

Tests can be run in two modes - with in-memory implementation and using a PostgreSQL database. Tests by default run using in-memory version so the only thing you need to do to run all tests is executing the following command.

go test ./...

To run the same set of tests but against a running PostgreSQL database (aka integration/medium tests) you have to run the following command.

go test ./... -tags=integration

It uses Go build tags to choose the proper persistent storage implementation.

You can configure the PostgreSQL connection string by changing env variables:

  • POSTGRES_HOST
  • POSTGRES_PORT
  • POSTGRES_USER
  • POSTGRES_DB

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL