Skip to content

devmeireles/go-devcontainer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go Devcontaier

The Visual Studio Code Dev Containers extension lets you use a container as a full-featured development environment. It allows you to open any folder inside (or mounted into) a container and take advantage of Visual Studio Code's full feature set. A devcontainer.json file in your project tells VS Code how to access (or create) a development container with a well-defined tool and runtime stack. This container can be used to run an application or to separate tools, libraries, or runtimes needed for working with a codebase.

Workspace files are mounted from the local file system or copied or cloned into the container. Extensions are installed and run inside the container, where they have full access to the tools, platform, and file system. This means that you can seamlessly switch your entire development environment just by connecting to a different container.

img

Read more on https://code.visualstudio.com/docs/devcontainers/containers

Requirements

  • Docker installed locally.
  • Docker installed on a remote environment.
  • Visual Studio Code with Devcontainer extension

Starting

  • Press F1 or Ctrl+Shift+P to open the Command Palette
  • Type 'Dev Containers: Reopen in Container' and select the corresponding option from the list.

This will initiate the process of loading your application setup within a Docker container. You can then access your development environment seamlessly."

img

After running the 'Dev Containers: Reopen in Container' command, Visual Studio Code will open a new window with your project loaded inside a Docker container. Once the container has been successfully built, you can access your development environment, including the container terminal:

img

Developing

Before you start developing, ensure that you have installed the necessary environment for the live-reload feature. Keep the container terminal open

To get CompileDaemon

make get-daemon

To install CompileDaemon

make install-daemon

To start a server

make serve

Your application code resides in the 'app' folder, starting from 'main.go.' Make changes to your code, and you'll see the terminal automatically rebuilding your application

img

References

About

A lightweight devcontainer for Go with live-reload

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors