-
Notifications
You must be signed in to change notification settings - Fork 9
/
functionary.code-workspace
101 lines (101 loc) · 3.15 KB
/
functionary.code-workspace
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"folders": [
{ "path": "cli" },
{ "path": "docs" },
{ "path": "docker" },
{ "path": "examples" },
{ "path": "functionary" },
{ "path": "runner" },
{ "path": "package_templates" }
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/*.egg-info": true,
"**/*.pyc": true,
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/.coverage": true,
"**/*.sqlite3": true,
"**/*.swp": true
},
"editor.formatOnSave": true,
"markdownlint.config": {
"MD013": true,
"MD024": { "allow_different_nesting": true }
},
"prettier.proseWrap": "always",
"python.analysis.autoImportCompletions": false,
"python.testing.pytestEnabled": true,
"terminal.integrated.env.linux": {
"DB_ENGINE": "postgresql",
"DB_HOST": "localhost",
"DEBUG": "TRUE",
"DJANGO_SECRET_KEY": "supersecret",
"LOG_LEVEL": "DEBUG",
"RABBITMQ_USER": "bugs",
"RABBITMQ_PASSWORD": "wascallywabbit"
},
"yaml.schemas": {
"../functionary/.vscode/package_yaml_schema.json": "package.yaml",
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml"
},
"[django-html]": { "editor.defaultFormatter": "monosans.djlint" },
"[html]": { "editor.defaultFormatter": "monosans.djlint" },
"[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[jsonc]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[markdown]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[python]": {
"editor.codeActionsOnSave": { "source.organizeImports": true },
"editor.defaultFormatter": "ms-python.black-formatter"
},
"[dockercompose]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"black-formatter.importStrategy": "fromEnvironment"
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "functionary: docker compose up",
"type": "shell",
"command": "docker compose -f ../docker/docker-compose.yml build --build-arg uid=$UID && docker compose -f ../docker/docker-compose.yml up -d",
"problemMatcher": []
},
{
"label": "functionary: docker compose down",
"type": "shell",
"command": "docker compose -f ../docker/docker-compose.yml down",
"problemMatcher": []
}
]
},
"extensions": {
"recommendations": [
"batisteo.vscode-django",
"DavidAnson.vscode-markdownlint",
"esbenp.prettier-vscode",
"foxundermoon.shell-format",
"monosans.djlint",
"ms-azuretools.vscode-docker",
"ms-python.black-formatter",
"ms-python.isort",
"ms-python.python",
"ms-vscode-remote.remote-containers",
"ms-vscode-remote.remote-ssh",
"ms-vscode-remote.vscode-remote-extensionpack",
"redhat.vscode-yaml",
"tamasfe.even-better-toml"
]
}
}