-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Currently shell commands can be executed with para only for one single group and a project belongs to exact one group.
Like this para.yml:
group1:
project_a: "/path/to/project/a"
project_b: "/path/to/project/b"
group2:
project_c: "/path/to/project/c"
project_d: "/path/to/project/d"
project_e: "/path/to/project/e"
The idea is, that projects do not belong to a single group anymore. A project should be configured as a standalone.
This should allow more flexibility assigning a project to one or multiple groups.
Example of para.yml:
projects:
project_a: "/path/to/project/a"
project_b: "/path/to/project/b"
project_c: "/path/to/project/c"
groups:
group1:
- project_b
- project_a
group2:
- project_b
group3:
- project_a
- project_b
- project_c