Files
DiscordBot-CloudflareWarp/bot/package.json
T
ginoblij 1a9dc1d676 Initial Discord bot in Docker behind a per-container Cloudflare WARP tunnel
- discord.js 14 bot with /ping and /warp, periodic WARP egress-IP logging
- Dockerfile: node:22-bookworm-slim + cloudflare-warp 2026.7.1377.0 (.deb)
- entrypoint boots dbus/warp-svc, registers, connects, verifies warp=on
- docker-compose with NET_ADMIN, /dev/net/tun, sysctls, healthcheck
- deploy script, README, CHANGELOG, lockfile generated inside Docker

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
2026-09-08 01:16:32 +02:00

19 lines
414 B
JSON

{
"name": "discordbot-cloudflarewarp",
"version": "1.0.0",
"description": "Simple discord.js bot that runs behind a Cloudflare WARP tunnel and logs the Cloudflare IP it uses",
"main": "src/index.js",
"type": "module",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"start": "node src/index.js"
},
"dependencies": {
"discord.js": "^14.16.3"
},
"license": "MIT"
}