-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcs16-server.code-workspace
More file actions
120 lines (120 loc) · 3.71 KB
/
cs16-server.code-workspace
File metadata and controls
120 lines (120 loc) · 3.71 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.associations": {
"*.sma": "c",
"*.amxx": "binary",
"*.cfg": "ini",
"*.ini": "ini",
"*.inc": "c",
"**/configs/plugins/*.json": "jsonc",
"**/configs/*.json": "jsonc"
},
"editor.tabSize": 4,
"editor.insertSpaces": false,
"editor.detectIndentation": false,
"files.encoding": "utf8",
"files.eol": "\n",
"search.exclude": {
"**/addons/amxmodx/scripting/include/**": false,
"**/addons/amxmodx/plugins/**": true
},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.sma": "${capture}.amxx"
},
"workbench.colorTheme": "Default Dark Modern",
"editor.wordWrap": "on"
},
"extensions": {
"recommendations": [
"uselessidler.sourcepawn-vscode",
"ms-vscode.powershell"
]
},
"launch": {
"version": "0.2.0",
"configurations": []
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "� [DEV] Deploy ALL",
"type": "shell",
"command": "powershell -ExecutionPolicy Bypass -File deploy.ps1 -Env dev",
"group": { "kind": "build", "isDefault": true },
"presentation": { "reveal": "always", "panel": "shared" },
"problemMatcher": []
},
{
"label": "🔧 [DEV] Deploy configs only",
"type": "shell",
"command": "powershell -ExecutionPolicy Bypass -File deploy.ps1 -Env dev -Only configs",
"group": "build",
"presentation": { "reveal": "always", "panel": "shared" },
"problemMatcher": []
},
{
"label": "🔧 [DEV] Deploy plugins only",
"type": "shell",
"command": "powershell -ExecutionPolicy Bypass -File deploy.ps1 -Env dev -Only plugins",
"group": "build",
"presentation": { "reveal": "always", "panel": "shared" },
"problemMatcher": []
},
{
"label": "🔧 [DEV] Deploy server configs",
"type": "shell",
"command": "powershell -ExecutionPolicy Bypass -File deploy.ps1 -Env dev -Only server",
"group": "build",
"presentation": { "reveal": "always", "panel": "shared" },
"problemMatcher": []
},
{
"label": "─────────────────────────",
"type": "shell",
"command": "echo separator",
"group": "build",
"presentation": { "reveal": "never" },
"problemMatcher": []
},
{
"label": "🚀 [PROD] Deploy ALL",
"type": "shell",
"command": "powershell -ExecutionPolicy Bypass -File deploy.ps1 -Env prod",
"group": "build",
"presentation": { "reveal": "always", "panel": "shared" },
"problemMatcher": []
},
{
"label": "🚀 [PROD] Deploy configs only",
"type": "shell",
"command": "powershell -ExecutionPolicy Bypass -File deploy.ps1 -Env prod -Only configs",
"group": "build",
"presentation": { "reveal": "always", "panel": "shared" },
"problemMatcher": []
},
{
"label": "🚀 [PROD] Deploy plugins only",
"type": "shell",
"command": "powershell -ExecutionPolicy Bypass -File deploy.ps1 -Env prod -Only plugins",
"group": "build",
"presentation": { "reveal": "always", "panel": "shared" },
"problemMatcher": []
},
{
"label": "🚀 [PROD] Deploy server configs",
"type": "shell",
"command": "powershell -ExecutionPolicy Bypass -File deploy.ps1 -Env prod -Only server",
"group": "build",
"presentation": { "reveal": "always", "panel": "shared" },
"problemMatcher": []
}
]
}
}