-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca5b263
commit 4b6ea65
Showing
4 changed files
with
113 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
.devcontainer/codeforlife-deploy-appengine/devcontainer.json
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,33 @@ | ||
{ | ||
"name": "codeforlife-deploy-appengine", | ||
"dockerComposeFile": [ | ||
"../../docker-compose.yml" | ||
], | ||
"service": "base-service", | ||
"shutdownAction": "none", | ||
"workspaceFolder": "/workspace/codeforlife-deploy-appengine", | ||
"remoteUser": "root", | ||
// "postCreateCommand": "pipenv install --dev", | ||
"features": { | ||
"ghcr.io/devcontainers/features/python:1": { | ||
"version": "3.8" | ||
}, | ||
"ghcr.io/devcontainers/features/terraform:1": { | ||
"version": "1.6.6", | ||
"tflint": "none", | ||
"terragrunt": "none" | ||
}, | ||
"ghcr.io/dhoeric/features/google-cloud-cli:1": { | ||
"version": "447.0.0" | ||
} | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
//TODO: Specify preferred settings and extensions once defined | ||
"settings": {}, | ||
"extensions": [ | ||
"ms-python.python" | ||
] | ||
} | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
.devcontainer/codeforlife-package-javascript/devcontainer.json
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,23 @@ | ||
{ | ||
"name": "codeforlife-package-javascript", | ||
"dockerComposeFile": [ | ||
"../../docker-compose.yml" | ||
], | ||
"service": "base-service", | ||
"shutdownAction": "none", | ||
"workspaceFolder": "/workspace/codeforlife-package-javascript", | ||
"remoteUser": "root", | ||
"postCreateCommand": "npm install", | ||
"features": { | ||
"ghcr.io/devcontainers/features/node:1": { | ||
"version": "18" | ||
} | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
//TODO: Specify preferred settings and extensions once defined | ||
"settings": {}, | ||
"extensions": [] | ||
} | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
.devcontainer/codeforlife-package-python/devcontainer.json
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,27 @@ | ||
{ | ||
"name": "codeforlife-package-python", | ||
"dockerComposeFile": [ | ||
"../../docker-compose.yml" | ||
], | ||
"service": "base-service", | ||
"shutdownAction": "none", | ||
"workspaceFolder": "/workspace/codeforlife-package-python", | ||
"remoteUser": "root", | ||
"postCreateCommand": "pipenv install --dev", | ||
"features": { | ||
"ghcr.io/devcontainers/features/python:1": { | ||
"version": "3.8" | ||
} | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
//TODO: Specify preferred settings and extensions once defined | ||
"settings": { | ||
"python.defaultInterpreterPath": ".venv/bin/python" | ||
}, | ||
"extensions": [ | ||
"ms-python.python" | ||
] | ||
} | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
.devcontainer/codeforlife-service-template/devcontainer.json
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,30 @@ | ||
{ | ||
"name": "codeforlife-service-template", | ||
"dockerComposeFile": [ | ||
"../../docker-compose.yml" | ||
], | ||
"service": "base-service", | ||
"shutdownAction": "none", | ||
"workspaceFolder": "/workspace/codeforlife-service-template", | ||
"remoteUser": "root", | ||
"postCreateCommand": "./run", | ||
"features": { | ||
"ghcr.io/devcontainers/features/python:1": { | ||
"version": "3.8" | ||
}, | ||
"ghcr.io/devcontainers/features/node:1": { | ||
"version": "18" | ||
} | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
//TODO: Specify preferred settings and extensions once defined | ||
"settings": { | ||
"python.defaultInterpreterPath": ".venv/bin/python" | ||
}, | ||
"extensions": [ | ||
"ms-python.python" | ||
] | ||
} | ||
} | ||
} |