aboutsummaryrefslogtreecommitdiff
path: root/.zed/tasks.json
diff options
context:
space:
mode:
Diffstat (limited to '.zed/tasks.json')
-rw-r--r--.zed/tasks.json14
1 files changed, 14 insertions, 0 deletions
diff --git a/.zed/tasks.json b/.zed/tasks.json
new file mode 100644
index 0000000..eefb994
--- /dev/null
+++ b/.zed/tasks.json
@@ -0,0 +1,14 @@
1[
2 {
3 "label": "Run",
4 "command": "python main.py",
5 "env": { "TOKEN": "$TOKEN" },
6 "reveal": "no_focus",
7 "shell": {
8 "with_arguments": {
9 "program": "bash",
10 "args": ["--init-file", ".env"],
11 },
12 },
13 },
14]