cli icon indicating copy to clipboard operation
cli copied to clipboard

Would be nice to have a `ignite module list` command

Open jtremback opened this issue 4 years ago • 3 comments

Right now it's a bit much to dive into app.go to figure it out. It looks like there are a lot of modules in there, although on http://0.0.0.0:12345/#/ it tells me that "We've installed the auth, bank, and staking modules for you."

jtremback avatar Feb 22 '21 05:02 jtremback

What would the module list do? Analyze app.go dynamically and tell, which modules are installed? Could be useful, perhaps.

fadeev avatar Feb 22 '21 06:02 fadeev

Under the current Cosmos-SDK, all the used modules are passed to module.NewManager method, we could then list them from this call if this feature makes sense.

Though this way of passing modules could change with the future refacto

lumtis avatar Feb 22 '21 10:02 lumtis

Done in module registry app poc.

julienrbrt avatar Jul 12 '24 04:07 julienrbrt