Skip to content

Commit

Permalink
fix; node version on test
Browse files Browse the repository at this point in the history
  • Loading branch information
abuenosvinos committed Aug 11, 2023
1 parent a5e5602 commit decc458
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ jobs:
- name: 👍 Checkout
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 16

- name: Get information
env:
JOB_CONTEXT: ${{ toJson(job) }}
Expand Down
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@

## Introduction
***

This project is a practice for CQRS and Event Driven Development using some great tools.

## Requirements
***

- Docker
- Make (If you don't have make, you can execute the same commands inside the Makefile)

## Preparation
***

`make start`

Expand All @@ -20,12 +17,10 @@ This project is a practice for CQRS and Event Driven Development using some grea
`make create-db`

## Test
***

`make test`

## CQRS + Event Driven Development
***

### Code in `src/Event`

Expand Down Expand Up @@ -110,7 +105,6 @@ If you make a look to `EventBus`, `EventOptions` and `SymfonyEventConfiguration`
- routing; referer to the binding_keys in the `messenger.yaml` file to choose a queue

## Application
***

> Our application is about a store who sell products which are provided from a warehouse and a Finance department who buy those products.<br/>
> We have 5 Bounded Context, 3 of business nature and 2 of technical nature.<br/>
Expand Down Expand Up @@ -151,7 +145,6 @@ We have only one Entity:
- Product; represent the product from the point of view of the Store department; Code, stock, price.

## Execution
***

> There are three commands where you can manage the application. As a practice you can do these three actions using an API.
Expand Down Expand Up @@ -196,7 +189,6 @@ bin/console messenger:consume async async_low
On http://localhost/ you can navigate through the information generated for you and the application

## Next Steps
***

- Add an implementation for Laravel
- Add the concept of Store to manage more than one
Expand All @@ -206,7 +198,6 @@ On http://localhost/ you can navigate through the information generated for you
- API to manage the application

## References
***

- https://symfony.com/doc/current/messenger.html
- https://www.doctrine-project.org/
Expand Down

0 comments on commit decc458

Please sign in to comment.