conduit icon indicating copy to clipboard operation
conduit copied to clipboard

RealWorld example backend implementing the CQRS/ES pattern in Elixir and Phoenix

Results 17 conduit issues
Sort by recently updated
recently updated
newest added

Hi, I am new to commanded and I come from the rails. I found there are two big contexts or aggregates. one is called blog (lib/conduit/blog), another is called accounts(lib/conduit/accounts)....

`RegisterUser` only validates username and email rules. It is possible to register user with ``` POST /api/users { "user": { "username": "homer", "email": "[email protected]" } } ```

This PR makes it easier to get up and running.

It allows passing options through the Vex validators - allow_nil - allow_blank - format - message etc...

The author aggregate doesn't really need to know the username. Since it can be changed by the user aggregate we don't want to have to synchronise the value between two...

Hello, Is it possible to add an example custom mix task to demonstrate how to send a command from within a mix task? which applications should be started and how...

`Support.Middleware.Uniqueness` module works fine if the only thing that you need to validate is if the command hasn't been dispatched before with a common field name. But what happens if...

Hey, I just noticed this project and the book you're writing are using the same name as my elixir libraries that I've been building for the past 2 years. https://github.com/conduitframework...

Edits/suggestions for the book, [Building Conduit](https://leanpub.com/buildingconduit/read). Have an edit or suggestion? Leave a comment here! ## Edits - [ ] in "Writing our first unit test" aggregates/user_test.exs example `defmodule Conduit.Accounts.UserTest`...