This repository has been archived by the owner on Nov 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gourd.code-workspace
84 lines (84 loc) · 1.88 KB
/
gourd.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
{
"folders": [
{
// https://code.visualstudio.com/docs/editor/multi-root-workspaces
"name": "go",
"path": "."
},
{
"path": "ui"
},
{
"path": "rust"
}
],
"extensions": {
"recommendations": [
"bradlc.vscode-tailwindcss",
"zixuanchen.vitest-explorer"
]
},
"tasks": {
"version": "2.0.0",
"options": {
"cwd": "${workspaceFolder:go}/"
},
"tasks": [
{
"label": "oapi",
"type": "shell",
"command": "make",
"args": ["generate-openapi"],
"problemMatcher": []
}
]
},
"settings": {
"go.testFlags": [
"-tags",
"integration",
"-v",
"-cover",
"-race",
"-coverpkg=github.com/nickysemenza/gourd/..."
],
"go.lintTool": "golangci-lint",
"go.lintFlags": ["--fast"],
"editor.formatOnSave": true,
"go.buildFlags": ["-tags", "integration"],
"go.testEnvVars": {
"MIGRATIONS_DIR": "file://${workspaceFolder}/internal/db/migrations",
"PDFLATEX_BINARY": "/Library/TeX/texbin/pdflatex"
},
"typescript.tsdk": "ui/node_modules/typescript/lib",
"sqltools.connections": [
{
"previewLimit": 50,
"server": "localhost",
"port": 5555,
"driver": "PostgreSQL",
"name": "gourd",
"database": "food",
"username": "gourd",
"password": "gourd"
}
],
"yaml.schemas": {
"https://raw.githubusercontent.com/OAI/OpenAPI-Specification/main/schemas/v3.0/schema.yaml": [
"openapi.yaml",
"gourd.yaml"
],
"tooling/mapping_schema.json": "ingredient_fdc_mapping.yaml"
},
"go.testTimeout": "60s",
"files.exclude": {
"ui/dist/": true
},
"search.exclude": {
"**/react-query/**": true
},
"files.associations": {
"docker-compose*.yml": "dockercompose"
}
}
}