Skip to content

Commit 1c691fa

Browse files
authored
Add devcontainer postcreatecommand
1 parent 0a688c7 commit 1c691fa

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.devcontainer/devcontainer.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"postCreateCommand": "bash scripts/devcontainer_postCreateCommand.sh"
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env bash
2+
# Devcontainer postCreateCommand.
3+
# Install dependencies for running this project in GitHub Codespaces.
4+
5+
set -eux
6+
7+
# For project.
8+
bundle install

0 commit comments

Comments
 (0)