-
|
In order to familiarise myself with the codebase, I'm looking into working on some items from the issue list. After cloning the repository and opening it in IntelliJ IDEA, I was asked whether I wanted to start a devcontainer. This leads me to a couple of questions:
I already tried changing I'm fine with not using the devcontainers but since the configuration is there, I assume that I might not be the only one with issues using them with IntelliJ. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
|
/cc @edeandrea (container-image), @geoand (container-image), @radcortez (config) |
Beta Was this translation helpful? Give feedback.
-
I am not aware of any regular maintainers of Quarkus who use them.
cc @jabrena who added devcontainers support |
Beta Was this translation helpful? Give feedback.
-
|
Hi @milgner, I added Maybe the folder: https://github.com/quarkusio/quarkus/tree/main/.devcontainer could require a minimum README.md or similar to clarify this kind of doubt. @geoand, do you see value in minimum documentation about when to use Devcontainer in Quarkus? Note: Personally, I continue learning about it—it is a massive monorepo :) Juan Antonio |
Beta Was this translation helpful? Give feedback.
Hi @milgner,
I added
Devcontainersupport in Quarkus mainly to cover the gap when a software engineer wants to review Quarkus but at that moment doesn't have the developer environment ready. In that case, the combination ofdevcontainer.json+Github Codespacescould help to do the first steps in the Quarkus ecosystem. But if you have IntelliJ or another Java IDE locally, it is better to not use Devcontainer and just clone the repo and interact with the repository with your favorite Java IDE because you are adding an extra layer.Maybe the folder: https://github.com/quarkusio/quarkus/tree/main/.devcontainer could require a minimum README.md or similar to clarify this kind of doubt. @geoand,…