jmformenti
jmformenti
Yes, of course, I'll try to create a new PR
Opened PR #1955
Thanks @maxlath, I've realized that the failing request is this one: https://github.com/maxlath/wikibase-edit/blob/main/lib/request/get_final_token.js#L10 I've added `origin=*` and I've already set `$wgCrossSiteAJAXdomains = [ '*' ];` in my Wikibase but I'm getting...
Thanks a lot @AlexW00, I'm trying to use your fork but I'm getting the same error, not sure if I'm doing something wrong. This is the code that I'm testing:...
> What does `console.log(window.location.origin)` print out? Is this value in your `$wgCrossSiteAJAXdomains`? I've double-checked it, the `window.location.origin=http://localhost:3000` and the final request is: ``` http://localhost/w/api.php?action=login&format=json&origin=http://localhost:3000 ``` And this is my config...
> In your wbEditConfig object, the port of your wikibase instance seems to be missing. On which port is wikibase running? If it is `8181` can you try it with...
> You should also update the:[/petclinic_db_setup_postgres.txt](https://github.com/spring-projects/spring-petclinic/blob/main/src/main/resources/db/postgres/petclinic_db_setup_postgres.txt) and[/petclinic_db_setup_mysql.txt](https://github.com/spring-projects/spring-petclinic/blob/main/src/main/resources/db/mysql/petclinic_db_setup_mysql.txt) > > accordingly :) Removed that documentation because with these changes no manual steps are needed anymore.
> Looking at it in more detail I'm not really sure I know what the intention was here. I don't want docker-compose to be the only option to run a...
Personally I like the idea to run the application and the database with a single command: ``` ./mvnw spring-boot:run -P ``` with any other `docker` or `docker compose` extra command...
From my perspective, using `@EnableMockOperator` I would expect don't need access to a real kubernetes cluster. Following the [docs](https://javaoperatorsdk.io/docs/using-samples#spring-boot) I've found that is possible with some changes: ``` @Configuration public...