integrant

grierson 2018-01-12T17:13:09.000024Z

[system.clj](https://github.com/grierson/conduit/blob/master/src/conduit/usecases/system.clj) I'm learning Integrant by implementing the [real world conduit backend api](https://github.com/gothinkster/realworld). I've setup an initial attempt which is working however once ive added all the usecases, handlers, and routes to the config its going to be 100s of lines long. Is there a way to nest the configuration without giving functions unnessary dependencies?

2018-01-12T17:16:15.000411Z

If you’re generating the configuration programmatically, you can built it however you want. For example, you can create smaller configurations and merge them together.

2018-01-12T17:16:32.000420Z

Note that the keys in an Integrant configuration should be namespaced.