Andy Damevin

Results 224 comments of Andy Damevin

> I much prefer code for test/seed data than `imports.sql` because it's easier to maintain and refactor. Ok does the solution you mentioned exists? ```java public class Startup { @OnStartup(LaunchMode.DEVELOPMENT)...

> Any opinion @ia3andy ? @FroMage I am not sure I get the reason why renaming will make APIs requests fail?

> In `Play` it was not automatic, you had to call `checkAuthenticity()` from your controller methods to check the CSRF token, making it opt-in. Perhaps this is what's missing for...

@rvansa have u tried something like this: https://create-react-app.dev/docs/using-https-in-development/

I've just tried ssl and it seems to work fine: ```properties quarkus.http.ssl.certificate.file=cert.pem quarkus.http.ssl.certificate.key-file=key.pem quarkus.http.insecure-requests=redirect ``` I didn't manage to make the websocket work for HMR in proxy dev-mode using Vite....

FYI I am using RESTEasy Reactive, maybe the problem is with Classic + undertow?

We can close this issue. Something we don't yet have though is ssl support for the node dev server, but I guess having Quarkus with SSL make this kind of...

If implementing this, you might also want to implement #175

This is a very good point, TBH I haven't thought about the possibility to have the application.properties somewhere else than `src/main/resources` :). Did you configure that in the pom.xml? Looking...

> No. Initially I was planning to use Env variables, but this page: [quarkus.io/guides/config-reference#configuration-sources](https://quarkus.io/guides/config-reference#configuration-sources) says that quarkus also looks for `$PWD/config/application.properties` so maybe the solution is to look for `src/main`...