kitproj / kit

Kit makes your dev loop crazy fast
48 stars 2 forks source link

Profiles #37

Open alexec opened 1 year ago

alexec commented 1 year ago

I’d like to be able to label a task with one of more profiles and the run ‘kit -p profile-1 up’ so it only runs those tasks.

agilgur5 commented 1 year ago

This could just be achieved with a task with dependencies on all those tasks, no? Rather than creating a new feature to support that

alexec commented 1 year ago

I should probably say the use case I want to solve. Say you want to run most tasks using Kit, but sometime run some in your IDE using debugger and hot reload. This is really good for large Java apps, where hot reload takes seconds and restart takes 10s of seconds.

You can do this with another task as you say.