Subroto
Subroto
Hi @SitiSchu I have tested compose file with only Postgres as container. But, when creating API server image for Cargo project, on my system it fails. If it fails for...
> When running `docker-compose up` I do get a error for the api service so I guess we can hold off on this for now Do create a secrets folder...
@ninjadev64 how is it working for u? > I use it just fine. For me `deno task dev` still doesn't work, and failing because of the `tauri` cli/bin script
The only way I see to make `deno` work with tauri is to write custom `dev` script to run `tauri` cli or start the vite dev server using a custom...
Thanks for sharing. I think it should work with `cargo tauri dev` with the changes u described above, but I am not able to run `cargo tauri dev` on my...
For me this worked: ```html ``` The idea behind writing the classes this way is to keep the UnoCSS classes hardcoded and separate from the dynamic classnames a user can...
I am getting this error, when running `deno -A npm:yo webapp`: ``` Uncaught TypeError: chalk.red.bold is not a function ``` The above error occurs because of having multiple `chalk` versions...
Thanks for sharing a hack @7nik. The solution looks simple but is hard to understand. As the project grows, depending on the reactive state and `$effect.pre()` might become challenging, error-prone,...
First of all, I like your solution and it works really well. Thanks for sharing. > $effect.pre() is used only once, and without a reactive state Isn't `$effect.pre()` dependent on...
> Yes, queries are pulled from the local files, so its up to the use to provide what they need. Hi I didn't understand this reply, apologies if I have...