Sumanth Chinthagunta
Sumanth Chinthagunta
>  > > Just tested on WSL with `cog 6.0.1` with bash. Can you give me your shell + OS and check if you're using the latest version ?...
looks like I manual create **_cog** auto completions file in 2022 in the same directory where **brew** generally keep completions. Before: I have to re-run `generate-completions` to update it and...
are we asking to support **top-level** `env_file` in `compose.yml` ? That would be nice to replace long `docker compose --env-file .env --env-file .secrets config ` command with short `docker compose...
For reference, Here is my monorepo https://github.com/xmlking/spectacular Shadcn components are at packages/ui with components.json in it. Consuming app is at apps/console-sc
in https://github.com/xmlking/svelte-starter-kit ``` pnpm node:build # this generate ./build pnpm preview ```
I created this minimal repo to reproduce the issue https://github.com/xmlking/SPA-aaa-sveltekit-node-vite-pwa-issue Steps to reproduce 1. `gh repo clone xmlking/SPA-aaa-sveltekit-node-vite-pwa-issue` 2. `pnpm i` 3. `pnpm build` 4. `pnpm preview` 5. open `http://localhost:4173/`...
for routers in root `http://localhost:4173/` there is no problem as assets are relative to root. but this is the only problem for sub routers e.g., `http://localhost:4173/demo/hello` as there are no...
after enabling hasura `naming convention`, auth server is not starting. is there any workaround ? ``` HASURA_GRAPHQL_EXPERIMENTAL_FEATURES: naming_convention HASURA_GRAPHQL_DEFAULT_NAMING_CONVENTION: graphql-default ``` ```log auth | {"level":"info","message":"Log level: info"} auth | {"level":"info","message":"Waiting...
> @xmlking were you able to resolve your issue? For me, this really does not seem like a deployment issue - at least in the way described here. I feel...
I found a solution to support `non-root` runner use case: by setting environment variable `TMPDIR=/some_temp_root` we can control base directory for `ioutil.TempDir()`