[GH-ISSUE #1155] Development tools CloudBeaver #247

Closed
opened 2026-03-07 20:46:51 +03:00 by kerem · 9 comments
Owner

Originally created by @miltonchirinos44 on GitHub (Sep 15, 2022).
Original GitHub issue: https://github.com/dbeaver/cloudbeaver/issues/1155

Originally assigned to: @devnaumov on GitHub.

Hello friends, I am new to the development of cloudbeaver, a question? What development tools do you use for cloudbeaer development, apart from eclipse?
I have noticed that with eclipse it only shows me the backend.
What tool do you recommend for me to visualize the frontend?

Or what tools do you use apart from eclipse java, for the development of cloudbeaver or do you recommend any code editor?

I currently only have this:
eclipse cloudbeaver ejecutando

Originally created by @miltonchirinos44 on GitHub (Sep 15, 2022). Original GitHub issue: https://github.com/dbeaver/cloudbeaver/issues/1155 Originally assigned to: @devnaumov on GitHub. Hello friends, I am new to the development of cloudbeaver, a question? What development tools do you use for cloudbeaer development, apart from eclipse? I have noticed that with eclipse it only shows me the backend. What tool do you recommend for me to visualize the frontend? Or what tools do you use apart from eclipse java, for the development of cloudbeaver or do you recommend any code editor? I currently only have this: ![eclipse cloudbeaver ejecutando](https://user-images.githubusercontent.com/52106718/190407727-49552316-27e7-4f6c-aeb4-f734d955c288.png)
kerem 2026-03-07 20:46:51 +03:00
Author
Owner

@devnaumov commented on GitHub (Sep 20, 2022):

Hi @miltonchirinos44! We use VS Code for the front-end development and IntelliJ IDEA for the back-end development.

<!-- gh-comment-id:1252118295 --> @devnaumov commented on GitHub (Sep 20, 2022): Hi @miltonchirinos44! We use VS Code for the front-end development and IntelliJ IDEA for the back-end development.
Author
Owner

@miltonchirinos44 commented on GitHub (Sep 20, 2022):

@devnaumov I have my backend files configured like this
image

and my files den vscode like this
image

@devnaumov a query is it ok that in vscode I have the cloudbeaver and dbeaver folders open? or what suggestion do you suggest me

Another question I have is how can I execute the frontend separately from vscode since the backend is executed as follows in eclipse java
image

<!-- gh-comment-id:1252411239 --> @miltonchirinos44 commented on GitHub (Sep 20, 2022): @devnaumov I have my backend files configured like this ![image](https://user-images.githubusercontent.com/52106718/191277365-c6deb2a7-35c0-4b9c-bab9-b9d86521e57e.png) and my files den vscode like this ![image](https://user-images.githubusercontent.com/52106718/191277655-20fae583-2d4d-4cbc-9fe4-3f55a54fc965.png) @devnaumov a query is it ok that in vscode I have the cloudbeaver and dbeaver folders open? or what suggestion do you suggest me Another question I have is how can I execute the frontend separately from vscode since the backend is executed as follows in `eclipse java` ![image](https://user-images.githubusercontent.com/52106718/191279313-7b44555c-d5c4-4ac3-8d1c-8e68e5bc37eb.png)
Author
Owner

@miltonchirinos44 commented on GitHub (Sep 26, 2022):

@devnaumov how to debug the front code in Visual Studio Code, could you tell me how I can do it?

<!-- gh-comment-id:1258249781 --> @miltonchirinos44 commented on GitHub (Sep 26, 2022): @devnaumov how to debug the front code in Visual Studio Code, could you tell me how I can do it?
Author
Owner

@kseniaguzeeva commented on GitHub (Oct 12, 2022):

Could you please tell is the ticket still actual for you? What result do you want to receive and what for? It looks very similar with https://github.com/dbeaver/cloudbeaver/issues/1175.

<!-- gh-comment-id:1276092568 --> @kseniaguzeeva commented on GitHub (Oct 12, 2022): Could you please tell is the ticket still actual for you? What result do you want to receive and what for? It looks very similar with https://github.com/dbeaver/cloudbeaver/issues/1175.
Author
Owner

@miltonchirinos44 commented on GitHub (Oct 12, 2022):

@kseniaguzeeva

In ticket #1155 you only needed to know what tools were used for cloudbeaver development, this question is about software, and the question I have with this ticket is how to debug cloudbeaver source code with visual studio code

In ticket #1175 I need to compile the cloudbeaver project in development mode and make changes that are displayed in real time, since when I run cloudbeaver from eclipse it does not let me debug the frontend, I need help with this ticket, I understand that I should raise the cloudbeaver server with the port (3100)
http://localhost:3100 with the following command lerna run dev --stream --scope=@cloudbeaver/product-default -- -- --env server=localhost:8978, successfully launch the project. the problem is that i can't debug with visual studio code.

<!-- gh-comment-id:1276519191 --> @miltonchirinos44 commented on GitHub (Oct 12, 2022): @kseniaguzeeva In ticket #1155 you only needed to know what tools were used for cloudbeaver development, this question is about software, and the question I have with this ticket is how to debug cloudbeaver source code with `visual studio code` In ticket #1175 I need to compile the cloudbeaver project in development mode and make changes that are displayed in real time, since when I run cloudbeaver from eclipse it does not let me debug the frontend, I need help with this ticket, I understand that I should raise the cloudbeaver server with the port (3100) http://localhost:3100 with the following command `lerna run dev --stream --scope=@cloudbeaver/product-default -- -- --env server=localhost:8978`, successfully launch the project. the problem is that i can't debug with visual studio code.
Author
Owner

@devnaumov commented on GitHub (Oct 14, 2022):

@miltonchirinos44 To run and debug the frontend in visual studio code you need to open the CloudBeaver project in vs code, run backend, run frontend by executing the following command lerna run dev --stream --scope=@cloudbeaver/product-default -- -- --env server=localhost:8978 (please make sure that your backend is running on the 8978 port), open localhost:3100, open any file in cloudbeaver/webapp/packages directory, make some changes and you will see that your project rebuilds itself

<!-- gh-comment-id:1278863893 --> @devnaumov commented on GitHub (Oct 14, 2022): @miltonchirinos44 To run and debug the frontend in visual studio code you need to open the CloudBeaver project in vs code, run backend, run frontend by executing the following command ```lerna run dev --stream --scope=@cloudbeaver/product-default -- -- --env server=localhost:8978``` (please make sure that your backend is running on the 8978 port), open localhost:3100, open any file in cloudbeaver/webapp/packages directory, make some changes and you will see that your project rebuilds itself
Author
Owner

@miltonchirinos44 commented on GitHub (Oct 18, 2022):

@devnaumov , let me tell you that I managed to run CloudBeaver in development mode, make some changes and verify that the project rebuilds itself.

How could I run cloudbeaver in development mode in visual studio code and debug code using breakpoints because when I run cloudbeaver in development mode and add breakpoint in visual studio code, visual studio code does not honor breakpoints
image

<!-- gh-comment-id:1282420832 --> @miltonchirinos44 commented on GitHub (Oct 18, 2022): @devnaumov , let me tell you that I managed to run CloudBeaver in development mode, make some changes and verify that the project rebuilds itself. How could I run cloudbeaver in development mode in` visual studio code` and debug code using breakpoints because when I run cloudbeaver in development mode and add breakpoint in `visual studio code`, visual studio code does not honor breakpoints ![image](https://user-images.githubusercontent.com/52106718/196447734-a6405524-10b8-4c0d-a323-32f98fe61fd8.png)
Author
Owner

@devnaumov commented on GitHub (Nov 9, 2022):

@miltonchirinos44 HI! Could you try to console.log something and check if it works? We need to make sure that your app rebuilds and changes are applied. Make your changes, save the file, open the CloudBeaver and check the console.

<!-- gh-comment-id:1308902883 --> @devnaumov commented on GitHub (Nov 9, 2022): @miltonchirinos44 HI! Could you try to console.log something and check if it works? We need to make sure that your app rebuilds and changes are applied. Make your changes, save the file, open the CloudBeaver and check the console.
Author
Owner

@kseniaguzeeva commented on GitHub (Dec 8, 2022):

I've noticed there is no updates for a long time. Feel free to contact me to reopen the ticket if it's still actual.

<!-- gh-comment-id:1342701110 --> @kseniaguzeeva commented on GitHub (Dec 8, 2022): I've noticed there is no updates for a long time. Feel free to contact me to reopen the ticket if it's still actual.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/cloudbeaver#247
No description provided.