openai/openai-python

Public

mirrored fromhttps://github.com/openai/openai-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
ebdcc3f5df0dae2d84664a55200006c00f55bd10

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.devcontainer/devcontainer.json

39lines · modecode

1// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2// README at: https://github.com/devcontainers/templates/tree/main/src/debian
3{
4 "name": "Debian",
5 "build": {
6 "dockerfile": "Dockerfile",
7 "context": ".."
8 },
9
10 "postStartCommand": "rye sync --all-features",
11
12 "customizations": {
13 "vscode": {
14 "extensions": [
15 "ms-python.python"
16 ],
17 "settings": {
18 "terminal.integrated.shell.linux": "/bin/bash",
19 "python.pythonPath": ".venv/bin/python",
20 "python.typeChecking": "basic",
21 "terminal.integrated.env.linux": {
22 "PATH": "/home/vscode/.rye/shims:${env:PATH}"
23 }
24 }
25 }
26 }
27
28 // Features to add to the dev container. More info: https://containers.dev/features.
29 // "features": {},
30
31 // Use 'forwardPorts' to make a list of ports inside the container available locally.
32 // "forwardPorts": [],
33
34 // Configure tool-specific properties.
35 // "customizations": {},
36
37 // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
38 // "remoteUser": "root"
39}
40