-
-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1254 from colindean/devcontainer
Adds a devcontainer primarily for GitHub Codespaces use
- Loading branch information
Showing
2 changed files
with
53 additions
and
0 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,14 @@ | ||
{ | ||
"name": "Homebrew/homebrew-bundle", | ||
"image": "ghcr.io/homebrew/brew:latest", | ||
"workspaceFolder": "/home/linuxbrew/.linuxbrew/Homebrew/Library/Taps/homebrew/homebrew-bundle/", | ||
"workspaceMount": "source=${localWorkspaceFolder},target=/home/linuxbrew/.linuxbrew/Homebrew/Library/Taps/homebrew/homebrew-bundle/,type=bind,consistency=cached", | ||
"onCreateCommand": "./.devcontainer/on-create-command.sh", | ||
"postCreateCommand": "bundle install", | ||
"remoteEnv": { | ||
"HOMEBREW_GITHUB_API_TOKEN": "${localEnv:GITHUB_TOKEN}", | ||
"PATH": "${containerEnv:PATH}:/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/vendor/portable-ruby/current/bin", | ||
"EDITOR": "code --wait", | ||
"VISUAL": "code --wait" | ||
} | ||
} |
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,39 @@ | ||
#!/usr/bin/env bash | ||
set -eux -o pipefail | ||
|
||
# fix permissions so Homebrew and Bundler don't complain | ||
sudo chmod -R g-w,o-w /home/linuxbrew | ||
|
||
# everything below is too slow to do unless prebuilding so skip it | ||
CODESPACES_ACTION_NAME="$(jq --raw-output '.ACTION_NAME' /workspaces/.codespaces/shared/environment-variables.json)" | ||
if [[ "${CODESPACES_ACTION_NAME}" != "createPrebuildTemplate" ]] | ||
then | ||
echo "Skipping slow items, not prebuilding." | ||
exit 0 | ||
fi | ||
|
||
# install Homebrew's development gems | ||
brew install-bundler-gems --groups=all | ||
|
||
# install some useful development things | ||
sudo apt-get update | ||
|
||
apt_get_install() { | ||
sudo apt-get install --yes --no-install-recommends \ | ||
-o Dpkg::Options::=--force-confdef \ | ||
-o Dpkg::Options::=--force-confnew \ | ||
"$@" | ||
} | ||
|
||
apt_get_install \ | ||
openssh-server \ | ||
zsh | ||
|
||
# Ubuntu 18.04 doesn't include zsh-autosuggestions | ||
if ! grep -q "Ubuntu 18.04" /etc/issue &>/dev/null | ||
then | ||
apt_get_install zsh-autosuggestions | ||
fi | ||
|
||
# Start the SSH server so that `gh cs ssh` works. | ||
sudo service ssh start |