An open API service indexing awesome lists of open source software.

https://github.com/pfazzi/elixir-playground

Elixir Ecto Plug DDD CQRS Backend POC with Rest and GraphQL APIs
https://github.com/pfazzi/elixir-playground

absinthe ddd ecto elixir exagonal-architecture graphql plug rest

Last synced: 6 months ago
JSON representation

Elixir Ecto Plug DDD CQRS Backend POC with Rest and GraphQL APIs

Awesome Lists containing this project

README

          

# Playground

## Installation

```bash
$ docker-compose up -d
$ mix deps.get
$ mix ecto.migrate
```

## Run

```bash
$ mix run --no-halt
```

It will start your application with a web server running at localhost:4001.

## Checks

```bash
$ docker-compose up -d
$ mix format --check-formatted
$ mix test
$ mix dialyzer
```

## User stories

- [X] As a Customer I want to place an order
- [X] As a Customer I want to view the details of one order
- [X] As a Customer I want to view the list of my orders