forked from exhuma/schmackhaft
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add docs for the dev-container folder
- Loading branch information
Showing
3 changed files
with
17 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
This folder contains a VS-Code development container definition. When opening | ||
the main poject in VS-Code with the remote-development | ||
(`ms-vscode-remote.vscode-remote-extensionpack`) extension installed, VS-Code | ||
should prompt to "reopen" the folder in a dev-container. | ||
|
||
When in this mode, any VS-Code console will run inside that container. The | ||
container contains the required development dependencies. | ||
|
||
Additional dependencies (more personalised by the original author) can be | ||
pulled in by executing `bash .devcontainer/init-dev.bash`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
set -xe | ||
sudo apt update | ||
sudo apt -y install \ | ||
vim-nox | ||
git clone https://github.com/exhuma/dotfiles /home/node/dotfiles |