Rohit Mistry
Rohit Mistry
> What if we (users of Tilt) add labels to our resources that would "hint" Tilt to split resources within Tilt? > > E.g. `tilt.dev/resource : ""` Made some progress...
Got this idea semi-working now (though a bit janky) with this workaround: https://github.com/tilt-dev/tilt/issues/6349#issuecomment-2028536755 The workaround will use `kubectl` command in an OS agnostic way to read kubernetes labels `tilt.dev/resource` and...
Below are suggestions from ChatGPT on how such a requirement could work with `tilt.get_resources(...)` instead, but as of version 0.32.0, this does not work. ```Python tilt_label = 'my_label' for resource...
Closing this as a suitable workaround was found. We are using [`k8s_resource`](https://docs.tilt.dev/api#api.k8s_resource) as a workaround to explicitly define Tilt resources like below: ```Python for w in [..., "my-chart-prometheus", "my-chart-grafana", ...]:...
Found yet another (cleaner) workaround and thought to share it: ```Python # Intercept Tilt resource naming and also apply labels to resources def apply_resource_labels(id): if "prometheus" in id.name: # Reference:...
Found yet another (cleaner) workaround and thought to share it: ```Starlark # Reference: https://docs.tilt.dev/api#api.decode_json tilt_KubernetesApply_list = decode_json( # Reference: https://docs.tilt.dev/api#api.local json=local( command=""" tilt get KubernetesApplys --output=json """, echo_off=True, quiet=True, )...
I ran into the same issue and found the same workaround. It would be ideal to have a `-Force` flag so that the module loads `.env` file regardless of whether...
@Notmarrco , I have created a similar Visual Studio Code extension, but one that is published to Open-VSX as well. Open-VSX Listing: [`vscode-entr`](https://open-vsx.org/extension/righteouslabs/vscode-entr) Source Code: [`righteouslabs/vscode-entr`](https://github.com/righteouslabs/vscode-entr) Please share your thoughts/suggestions....
Found several duplicate issues in quick search: * https://github.com/toeverything/AFFiNE/issues/7967 * https://github.com/toeverything/AFFiNE/issues/8059 For what it is worth, on their documentation page [https://docs.affine.pro/docs/blocks-with-databases](https://docs.affine.pro/docs/blocks-with-databases) I found that calendar view is on the plan:...
@forehalo, you closed this issue as complete, but is there any chance you can link to more details for how to use this feature in Affine? I checked today and...