For now? I'm experimenting on an old concept.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

meta: add run configurations for local development tasks

+24
+8
.run/Local development run with watcher.run.xml
··· 1 + <component name="ProjectRunConfigurationManager"> 2 + <configuration default="false" name="Local development run with watcher" type="MiseTomlTaskRunConfigurationType" factoryName="MiseTomlTask"> 3 + <mise configEnvironment="" taskName="local-devel-watch" workingDirectory="$PROJECT_DIR$" taskParams=""> 4 + <envs /> 5 + </mise> 6 + <method v="2" /> 7 + </configuration> 8 + </component>
+8
.run/Local development run.run.xml
··· 1 + <component name="ProjectRunConfigurationManager"> 2 + <configuration default="false" name="Local development run" type="MiseTomlTaskRunConfigurationType" factoryName="MiseTomlTask"> 3 + <mise configEnvironment="" taskName="local-devel" workingDirectory="$PROJECT_DIR$" taskParams=""> 4 + <envs /> 5 + </mise> 6 + <method v="2" /> 7 + </configuration> 8 + </component>
+8
.run/Prep for local development run.run.xml
··· 1 + <component name="ProjectRunConfigurationManager"> 2 + <configuration default="false" name="Prep for local development run" type="MiseTomlTaskRunConfigurationType" factoryName="MiseTomlTask"> 3 + <mise configEnvironment="" taskName="local-devel-prep" workingDirectory="$PROJECT_DIR$" taskParams=""> 4 + <envs /> 5 + </mise> 6 + <method v="2" /> 7 + </configuration> 8 + </component>