doulevo / doulevo

A platform that simplifies application development and deployment.
MIT License
12 stars 1 forks source link

Doulevo feature: Multi project structure #6

Open ashleydavis opened 3 years ago

ashleydavis commented 3 years ago

Doulevo should support nested project structures like this:

parent-project/
  nested-project-A/
  nested-project-B/

Running Doulevo commands in the parent project should run the same command in each nested project.

For example invoking doulevo up in the parent should build and run all the nested projects.

Each nested project is a Doulevo project in it's own right.

nickdotht commented 3 years ago

Definitely.

Also, it should be possible to run only one or specific ones like this:

doulevo up my-react-frontend or doulevo up my-nodejs-backend my-keystonejs-dashboard

The same for the down command and other relevant ones.

ashleydavis commented 3 years ago

Maybe or maybe not...

Because you could simply do this instead:

cd my-react-front-end
doulevo up