Where I can see the development environment container url address?

Hi, maybe stupid question, but where I can see the developement environment url address? When I will start NodeJS webserver inside the development envitonment container, I need to know the public URL address to the page.

...and is it possible somehow to use my own server to run development environments instead of AWS?

 

Thanks a lot for each answer.   

0
2 comments

In most development environments, the URL or hostname for the server can be found in the terminal or console output when starting the Node.js web server. The server's message will typically include a line like "Server running on http://localhost:3000" or "Listening on http://127.0.0.1:3000," where the specific URL depends on your server setup.

Using your own server instead of AWS to run development environments depends on the platform you're using. Some development tools or platforms allow deploying environments on your infrastructure, while others are tied to specific cloud providers like AWS. If you opt for self-hosting, you'll need to establish your server infrastructure, configure the platform to use your server, install necessary software (e.g., Docker), and handle networking aspects. This process can be intricate, requiring advanced technical knowledge and experience.

0

Rene Klauco, Hi!

Have you tried to interact with the Node interface using the IDE terminal and use port forwarding inside the IDE? The help article below explains how to configure the port forwarding:

https://www.jetbrains.com/help/space/develop-in-a-dev-environment.html#port-forwarding-in-a-dev-environment

0

Please sign in to leave a comment.