aboutsummaryrefslogtreecommitdiff
path: root/.zed
diff options
context:
space:
mode:
Diffstat (limited to '.zed')
-rw-r--r--.zed/tasks.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/.zed/tasks.json b/.zed/tasks.json
new file mode 100644
index 0000000..4648b2c
--- /dev/null
+++ b/.zed/tasks.json
@@ -0,0 +1,34 @@
1[
2 {
3 "label": "Run release server",
4 "command": "cargo",
5 "args": ["run", "-r"],
6
7 "env": {
8 "SERVER_BIND": "0.0.0.0:8080"
9 },
10
11 "use_new_terminal": false,
12 "allow_concurrent_runs": false,
13 "reveal": "no_focus",
14 "reveal_target": "dock",
15 "hide": "never",
16 "shell": "system"
17 },
18 {
19 "label": "Run debug server",
20 "command": "cargo",
21 "args": ["run"],
22
23 "env": {
24 "SERVER_BIND": "0.0.0.0:8080"
25 },
26
27 "use_new_terminal": false,
28 "allow_concurrent_runs": false,
29 "reveal": "no_focus",
30 "reveal_target": "dock",
31 "hide": "never",
32 "shell": "system"
33 }
34]