refactor: make setup script interactive instead of using env vars

This commit is contained in:
2026-04-09 09:02:54 +07:00
parent e8b30743d3
commit fce23b3c59
3 changed files with 35 additions and 24 deletions

View File

@@ -11,7 +11,7 @@ Telegram bot that forwards [status.claude.com](https://status.claude.com/) (Atla
- `npm run dev` — Start local dev server (wrangler dev, emulates KV + Queues locally)
- `npm run deploy` — Deploy to Cloudflare Workers
- `npx wrangler deploy --dry-run` — Verify build without deploying
- `node scripts/setup-bot.js` — One-time: register bot commands + set Telegram webhook (requires BOT_TOKEN and WORKER_URL env vars)
- `node scripts/setup-bot.js` — One-time: register bot commands + set Telegram webhook (interactive prompts)
No test framework configured yet. No linter configured.

View File

@@ -92,10 +92,10 @@ Note the worker URL from the output (e.g., `https://claude-status-webhook.<your-
Run the setup script to register bot commands and set the Telegram webhook:
```bash
BOT_TOKEN=your-token WORKER_URL=https://your-worker.workers.dev node scripts/setup-bot.js
node scripts/setup-bot.js
```
You should see `{"ok":true}` for both webhook and commands.
It will prompt for your bot token and worker URL. You should see `{"ok":true}` for both webhook and commands.
### 7. Configure Statuspage webhook

View File

@@ -1,5 +1,7 @@
#!/usr/bin/env node
import { createInterface } from "node:readline/promises";
const TELEGRAM_API = "https://api.telegram.org/bot";
const BOT_COMMANDS = [
@@ -12,31 +14,40 @@ const BOT_COMMANDS = [
{ command: "uptime", description: "Component health overview" },
];
async function main() {
const token = process.env.BOT_TOKEN;
const workerUrl = process.env.WORKER_URL;
if (!token || !workerUrl) {
console.error("Required env vars: BOT_TOKEN, WORKER_URL");
console.error("Usage: BOT_TOKEN=xxx WORKER_URL=https://your-worker.workers.dev node scripts/setup-bot.js");
async function prompt(rl, question) {
const answer = (await rl.question(question)).trim();
if (!answer) {
console.error("Input required. Aborting.");
process.exit(1);
}
return answer;
}
// Set webhook
const webhookRes = await fetch(`${TELEGRAM_API}${token}/setWebhook`, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ url: `${workerUrl}/webhook/telegram` }),
});
console.log("Webhook:", await webhookRes.json());
async function main() {
const rl = createInterface({ input: process.stdin, output: process.stdout });
// Register commands
const commandsRes = await fetch(`${TELEGRAM_API}${token}/setMyCommands`, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ commands: BOT_COMMANDS }),
});
console.log("Commands:", await commandsRes.json());
try {
const token = await prompt(rl, "Bot token: ");
const workerUrl = await prompt(rl, "Worker URL (e.g. https://your-worker.workers.dev): ");
// Set webhook
const webhookRes = await fetch(`${TELEGRAM_API}${token}/setWebhook`, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ url: `${workerUrl}/webhook/telegram` }),
});
console.log("Webhook:", await webhookRes.json());
// Register commands
const commandsRes = await fetch(`${TELEGRAM_API}${token}/setMyCommands`, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ commands: BOT_COMMANDS }),
});
console.log("Commands:", await commandsRes.json());
} finally {
rl.close();
}
}
main().catch(console.error);