File tree Expand file tree Collapse file tree 5 files changed +42
-14
lines changed
Expand file tree Collapse file tree 5 files changed +42
-14
lines changed Original file line number Diff line number Diff line change 6060 "python.testing.pytestEnabled" : true ,
6161 "editor.formatOnType" : true ,
6262 "ruff.lint.enable" : true ,
63- "ruff.lint.run" : " onType" ,
6463 "mypy.enabled" : true ,
6564 "[python]" : {
6665 "editor.defaultFormatter" : " ms-python.black-formatter"
7877 }
7978 }
8079 }
81- // Configure tool-specific properties.
82- // "customizations": {},
83- // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
84- // "remoteUser": "root"
8580}
Original file line number Diff line number Diff line change 33{
44 "name" : " Python 3 - OTF Addons" ,
55 // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6- "build" : {
7- "dockerfile" : " Dockerfile" ,
8- "context" : " .." ,
9- "args" : {
10- "VARIANT" : " 3.11" ,
11- // Options
12- "INSTALL_NODE" : " false"
13- }
14- },
6+ "image" : " mcr.microsoft.com/devcontainers/python:3.11" ,
157 "features" : {
168 "ghcr.io/devcontainers/features/docker-in-docker:2" : {}
179 },
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ # Download each of the otf-addons repositories
4+
5+ for repo in $( cat otf-addons.txt) ; do
6+ echo " Downloading $repo "
7+ git clone https://github.com/adammcdonagh/otf-addons-$repo .git /workspaces/otf-addons-$repo
8+ done
Original file line number Diff line number Diff line change 1+ o365
2+ aws
3+ vault
4+ gcp
5+ winrm
Original file line number Diff line number Diff line change 1+ {
2+ "folders" : [
3+ {
4+ "path" : " ."
5+ },
6+ {
7+ "path" : " ../otf-addons-o365"
8+ },
9+ {
10+ "path" : " ../otf-addons-aws"
11+ },
12+ {
13+ "path" : " ../otf-addons-vault"
14+ },
15+ {
16+ "path" : " ../otf-addons-winrm"
17+ },
18+ {
19+ "path" : " ../otf-addons-gcp"
20+ }
21+ ],
22+ "settings" : {
23+ "files.associations" : {
24+ "*.json" : " jsonc"
25+ },
26+ "ruff.lint.enable" : true
27+ }
28+ }
You can’t perform that action at this time.
0 commit comments