aboutsummaryrefslogtreecommitdiff
path: root/.zed
diff options
context:
space:
mode:
authorTolmachev Igor <me@igorek.dev>2026-03-22 19:56:47 +0300
committerTolmachev Igor <me@igorek.dev>2026-03-22 20:19:27 +0300
commit536d022e8a55f6e53f01dfb7e0fae2ef24385aad (patch)
tree721d7195db7fc12c725b27301f77e345df64d1b4 /.zed
downloadvpn_manager_bot-536d022e8a55f6e53f01dfb7e0fae2ef24385aad.tar.gz
vpn_manager_bot-536d022e8a55f6e53f01dfb7e0fae2ef24385aad.zip
Init project
Diffstat (limited to '.zed')
-rw-r--r--.zed/settings.json17
-rw-r--r--.zed/tasks.json14
2 files changed, 31 insertions, 0 deletions
diff --git a/.zed/settings.json b/.zed/settings.json
new file mode 100644
index 0000000..ccab732
--- /dev/null
+++ b/.zed/settings.json
@@ -0,0 +1,17 @@
1{
2 "file_scan_exclusions": [
3 "**/.git",
4 "**/.svn",
5 "**/.hg",
6 "**/.jj",
7 "**/.sl",
8 "**/.repo",
9 "**/CVS",
10 "**/.DS_Store",
11 "**/Thumbs.db",
12 "**/.classpath",
13 "**/.settings",
14 "**/.venv",
15 "**/__pycache__",
16 ],
17}
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]