Sumanth Chinthagunta

Results 185 comments of Sumanth Chinthagunta

> ![image](https://private-user-images.githubusercontent.com/61043021/289208020-de013aaa-5136-40a0-87ed-bb194f1b53d4.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTEiLCJleHAiOjE3MDIwODgxNzIsIm5iZiI6MTcwMjA4Nzg3MiwicGF0aCI6Ii82MTA0MzAyMS8yODkyMDgwMjAtZGUwMTNhYWEtNTEzNi00MGEwLTg3ZWQtYmIxOTRmMWI1M2Q0LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFJV05KWUFYNENTVkVINTNBJTJGMjAyMzEyMDklMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjMxMjA5VDAyMTExMlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTIzZTcyOTUyOGJiZDdkODcyMDVhMjA2MTlhODRiZDUwZWU3MTZlOTVhMTBhNDdmZTYzYmQyMWI2MDI0M2FjNjUmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JmFjdG9yX2lkPTAma2V5X2lkPTAmcmVwb19pZD0wIn0.iVCwDMAJpRxb3Tqtdf_G0nmGIrdTBEtQM-AZlI6_86A) > > 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()`