A template repository for vscode devcontainers
Pre-requisites : you already have a running devcontainer on your development computer. You can use jpbourgeon/devcontainer-ts for a quick start with a typescript-node devcontainer.
- On github, duplicate this repository from
Use this templatebutton. It provides you with a basic code workspace and an empty installation script to get started. - From within your devcontainer, git clone your newly created project repository in the
workspacesfolder. - Customize the shell script named
./devcontainer-install.shin the root folder of your local repository. This script should install all the tools and dependencies that your project needs (vscode extensions, CLI, tools, runtimes, global npm packages, etc.). The install script should be kept in version control so that every contributor can set up the same development environment. For the same reason, you should always install exact versions of your tools and dependencies. - Run your install script and start coding !