How to force Phoenix DDD project to load the way I want

Hello, I have seven sub-projects under my domain drive phoenix project that I need to sort when I start iex mix phx.server as a priority concerned with what I need.

for example, I have these projects under my umbrella:

mishka_api
mishka_content
mishka_database
mishka_file
mishka_html
mishka_translator
mishka_user

But I need to sort them like this as my priority strategy:

1 → mishka_translator
2 → mishka_database
3 → mishka_user
4 → mishka_file
5 → mishka_content
6 → mishka_api
7 → mishka_html

By the way, every project above has some ‘GenServer’ and dependencies that I know of, Hence I sorted them based on the dependencies they require above.

Thank you

3 Likes

:pensive: :thinking: I asked before and could not remember this :frowning: