From 536d022e8a55f6e53f01dfb7e0fae2ef24385aad Mon Sep 17 00:00:00 2001 From: Tolmachev Igor Date: Sun, 22 Mar 2026 19:56:47 +0300 Subject: Init project --- .zed/settings.json | 17 +++++++++++++++++ .zed/tasks.json | 14 ++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 .zed/settings.json create mode 100644 .zed/tasks.json (limited to '.zed') 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 @@ +{ + "file_scan_exclusions": [ + "**/.git", + "**/.svn", + "**/.hg", + "**/.jj", + "**/.sl", + "**/.repo", + "**/CVS", + "**/.DS_Store", + "**/Thumbs.db", + "**/.classpath", + "**/.settings", + "**/.venv", + "**/__pycache__", + ], +} 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 @@ +[ + { + "label": "Run", + "command": "python main.py", + "env": { "TOKEN": "$TOKEN" }, + "reveal": "no_focus", + "shell": { + "with_arguments": { + "program": "bash", + "args": ["--init-file", ".env"], + }, + }, + }, +] -- cgit v1.3