-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
59 lines (59 loc) · 1.91 KB
/
Copy pathdevcontainer.json
File metadata and controls
59 lines (59 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "Aria AI Dev Container",
"build": {
"dockerfile": "Dockerfile"
},
"features": {
"ghcr.io/devcontainers/features/copilot-cli:1": {},
"ghcr.io/devcontainers/features/git-lfs:1": {},
"ghcr.io/joshuanianji/devcontainer-features/github-cli-persistence:1": {},
"ghcr.io/hspaans/devcontainer-features/pyupgrade:2": {},
"ghcr.io/devcontainers-extra/features/actions-runner:1": {},
"ghcr.io/helpers4/devcontainer/github-dev:": {}
},
"remoteUser": "vscode",
"forwardPorts": [7071, 8601, 8080, 8088, 11434],
"portsAttributes": {
"7071": {
"label": "Azure Functions",
"onAutoForward": "notify"
},
"8601": {
"label": "Streamlit",
"onAutoForward": "silent"
},
"8080": {
"label": "Aria Web",
"onAutoForward": "notify"
},
"8088": {
"label": "Writer Reviewer",
"onAutoForward": "notify"
},
"11434": {
"label": "Ollama",
"onAutoForward": "silent"
}
},
"remoteEnv": {
"LMSTUDIO_BASE_URL": "http://host.docker.internal:1234/v1",
"OLLAMA_BASE_URL": "http://host.docker.internal:11434/v1",
"OLLAMA_MODEL": "llama3.2",
"PIP_DISABLE_PIP_VERSION_CHECK": "1",
"PYTHONUNBUFFERED": "1",
"NPM_CONFIG_PREFIX": "/home/vscode/.npm-global"
},
"postCreateCommand": "bash .devcontainer/post-create.sh",
"customizations": {
"vscode": {
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python",
"python.analysis.typeCheckingMode": "basic",
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": ["tests"],
"editor.inlineSuggest.enabled": true
},
"extensions": []
}
}
}