My problem is that I am working with an umbrella project.
Context and schemas reside in core_app, migrations in db_app and “html” in the web apps.
- I’ve already created necessary migrations in db_app
- I’ve configured core_app not to generate migrations when I ran
phx.gen.context
- Now it would be great if I can run
phx.gen.html
in Phoenix app, without generating context files that already exist in the core_app.
Would it be possible to do that ?