openai/openai-python

Public

mirrored from https://github.com/openai/openai-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.66.2

Branches

Tags

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

Clone

HTTPS

Download ZIP

.devcontainer/devcontainer.json

43lines · modeblame

08b8179aDavid Schnurr2 years ago1// 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": {
ebdcc3f5Stainless Bot2 years ago6"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",
e9300e0eStainless Bot2 years ago20"python.defaultInterpreterPath": ".venv/bin/python",
ebdcc3f5Stainless Bot2 years ago21"python.typeChecking": "basic",
22"terminal.integrated.env.linux": {
23"PATH": "/home/vscode/.rye/shims:${env:PATH}"
24}
25}
26}
fe9eb8d1stainless-app[bot]1 years ago27},
28"features": {
29"ghcr.io/devcontainers/features/node:1": {}
08b8179aDavid Schnurr2 years ago30}
31
32// Features to add to the dev container. More info: https://containers.dev/features.
33// "features": {},
34
35// Use 'forwardPorts' to make a list of ports inside the container available locally.
36// "forwardPorts": [],
37
38// Configure tool-specific properties.
39// "customizations": {},
40
41// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
42// "remoteUser": "root"
43}