-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
48 lines (48 loc) · 1.14 KB
/
devcontainer.json
File metadata and controls
48 lines (48 loc) · 1.14 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
{
"name": "AsyncAPI-Python",
"dockerComposeFile": "docker-compose.yml",
"service": "devcontainer",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"forwardPorts": [
"rabbitmq:15672"
],
"containerEnv": {
"AMQP_URI": "amqp://guest:guest@rabbitmq/"
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"njpwerner.autodocstring",
"tamasfe.even-better-toml",
"ms-python.mypy-type-checker",
"ms-python.black-formatter",
"ms-python.isort",
"redhat.vscode-yaml",
"streetsidesoftware.code-spell-checker",
"asyncapi.asyncapi-preview",
"DavidAnson.vscode-markdownlint",
"github.vscode-github-actions"
],
"settings": {
"python.defaultInterpreterPath": "/workspaces/${localWorkspaceFolderBasename}/.venv/bin/python",
"yaml.schemas": {
"https://asyncapi.com/schema-store/3.0.0-without-$id.json": [
"file:///workspaces/asyncapi-python/examples/*.yaml"
]
},
"cSpell.ignoreWords": [
"asyncapi",
"codegen",
"devcontainer",
"pydantic",
"datamodel",
"amqp",
"venv",
"jsonschema",
"fanout"
]
}
}
}
}