4b0f328f2e
- Add standalone C# console runner tests/e2e/runner/ using WTelegramClient - Provide TelegramUserClient wrapper: login, create supergroup, invite bot, send messages/commands, read recent messages, wait for bot reply - Add .env.example and runner .gitignore to keep secrets/session files out of git - Update E2E README with runner instructions and status table - Runner project intentionally excluded from GM-Relay.slnx to avoid CI/AOT impact Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
32 lines
297 B
Plaintext
32 lines
297 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.venv/
|
|
env/
|
|
venv/
|
|
|
|
# Secrets
|
|
.env
|
|
*.env
|
|
|
|
# Telegram sessions
|
|
*.session
|
|
*.session-journal
|
|
|
|
# Playwright artifacts
|
|
test-results/
|
|
playwright-report/
|
|
playwright/.cache/
|
|
|
|
# .NET build artifacts
|
|
bin/
|
|
obj/
|
|
packages.lock.json
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.user
|
|
*.suo
|