kit
kit copied to clipboard
Kit makes your dev loop crazy fast
## Summary I'm not really sure why this is happening, but when Node deps change, sometimes a task that does `yarn install` will just run indefinitely and never finish inside...
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.14.0 to 0.17.0. Commits 9d2ee97 ssh: implement strict KEX protocol changes 4e5a261 ssh: close net.Conn on all NewServerConn errors 152cdb1 x509roots/fallback: update bundle fdfe1f8 ssh: defer channel...
Bumps [github.com/docker/docker](https://github.com/docker/docker) from 24.0.5+incompatible to 24.0.7+incompatible. Release notes Sourced from github.com/docker/docker's releases. v24.0.7 24.0.7 For a full list of pull requests and changes in this release, refer to the relevant...
Mentioned in https://github.com/kitproj/kit/issues/40#issuecomment-1755913391 but didn't get an answer. I _think_ this behavior is not currently supported. Task supports [specifying `sources` and `generates`](https://taskfile.dev/usage/#prevent-unnecessary-work) and will perform a checksum or timestamp (checksum...
Follow-up to https://github.com/argoproj/argo-workflows/pull/11928#issuecomment-1754165093 and https://github.com/argoproj/argo-workflows/issues/11423. > [...] Codespaces running indefinitely on `kit pre-up`: https://github.com/argoproj/argo-workflows/issues/11423. I even got a notification from GH that it used up 24 hours of compute before...
Having each service/task/background process have a custom color and prefix would be nice. #### prefixes Generally I'm fine with the default prefix of using the task name, but I think...
If you want to change many environment variables at once you need to give them all. It is verbose. It might be nice to have .env files imported, e.g. “kit...
I would be good to be able to conditionally run tasks. This would be a bit like Github actions, e.g.` ```yaml - name: foo command: sh script if: success() ```...
Profiles
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.
Apps tend to consist of: * Downstream dependencies. E.g. Kafka. These don’t generally go faulty, because faults are caused by code changes. * The app itself. This goes faulty a...