aboutsummaryrefslogtreecommitdiff
path: root/.zed
diff options
context:
space:
mode:
authorTolmachev Igor <me@igorek.dev>2025-08-23 20:34:47 +0900
committerTolmachev Igor <me@igorek.dev>2025-08-23 20:34:47 +0900
commit9cb5689c87978c4e05e87f631ebf92a626d583b0 (patch)
tree357f507b1f7ad3736d7c90fffc7f064689089f74 /.zed
parentb7cecc7c48ec55aa757011937bdee06852b303af (diff)
downloadqueue_server-9cb5689c87978c4e05e87f631ebf92a626d583b0.tar.gz
queue_server-9cb5689c87978c4e05e87f631ebf92a626d583b0.zip
Init project
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]