-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add devcontainer.json (ocean-devcontainer v1.1.0) * Update "Open in" badge to use GitHub Codespaces
- Loading branch information
Showing
2 changed files
with
54 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,51 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
// README at: https://github.com/devcontainers/templates/tree/main/src/debian | ||
{ | ||
"name": "Ocean Development Environment", | ||
|
||
// python 3.11 on debian, with latest Ocean and optional packages | ||
// source repo: https://github.com/dwavesystems/ocean-dev-docker | ||
"image": "docker.io/dwavesys/ocean-dev:latest", | ||
|
||
// install repo requirements on create and content update | ||
"updateContentCommand": "pip install -r requirements.txt", | ||
|
||
// forward/expose container services (relevant only when run locally) | ||
"forwardPorts": [ | ||
// dwave-inspector web app | ||
18000, 18001, 18002, 18003, 18004, | ||
// OAuth connect redirect URIs | ||
36000, 36001, 36002, 36003, 36004 | ||
], | ||
|
||
"portsAttributes": { | ||
"18000-18004": { | ||
"label": "D-Wave Problem Inspector", | ||
"requireLocalPort": true | ||
}, | ||
"36000-36004": { | ||
"label": "OAuth 2.0 authorization code redirect URI", | ||
"requireLocalPort": true | ||
} | ||
}, | ||
|
||
// Configure tool-specific properties. | ||
"customizations": { | ||
// Configure properties specific to VS Code. | ||
"vscode": { | ||
// Set *default* container specific settings.json values on container create. | ||
"settings": { | ||
"workbench": { | ||
"editorAssociations": { | ||
"*.md": "vscode.markdown.preview.editor" | ||
}, | ||
"startupEditor": "readme" | ||
} | ||
}, | ||
"extensions": [ | ||
"ms-python.python", | ||
"ms-toolsai.jupyter" | ||
] | ||
} | ||
} | ||
} |
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