Discussion of Lagom project development: https://github.com/lagom/.github/blob/master/CONTRIBUTING.md | Use lagom/lagom channel for general discussion. | Code of Conduct: https://www.lightbend.com/conduct | Forums: https://discuss.lagomframework.com | Commercial support from https://www.lightbend.com/
% "compile->compile;test->test"
@Before
and @After
allIssues
doesn't actually capture all issues of a driver -- it captures all issues of a run
My team has been really fond of something like this:
api
├── MyService.scala
├── domain
│ └── package.scala
├── events
│ └── package.scala
└── commands
└── package.scala
which is really organizationally nice... not sure if that's how opinionated Lagom wants to be, though.
Does it make sense to prescribe/recommend a repo structure?
I have to write a blog post about that
api
and impl
for each services
api
depends on dto
and messages
but dto
and messages
don’t know each others