forkable deploy.me.ts files.
Click any file to open it in the homepage editor. Edit, click Deploy, get a public URL.
AGENTS2 files
hello-agent.tsopen ↗
import { Deploy } from "deploy.me"
export default Deploy
.name("hello-agent")
.image("deploy.me/hello:1")
.target("ovh:rise-1@eu-west")
.scale({ min: 0, max: 10, idle: "30s" })
.http({ port: 3000 })mcp-server.tsopen ↗
import { Deploy } from "deploy.me"
export default Deploy
.name("mcp-server")
.image("deploy.me/mcp-server:1")
.target("ovh:rise-1@eu-west")
.scale({ min: 0, max: 5, idle: "60s" })
.http({ port: 3333, path: "/mcp" })BOTS2 files
discord-bot.tsopen ↗
import { Deploy, Secret } from "deploy.me"
export default Deploy
.name("discord-bot")
.image("deploy.me/discord-bot:1")
.target("ovh:rise-1@eu-west")
.env({
DISCORD_TOKEN: Secret.from("discord-token"),telegram-bot.tsopen ↗
import { Deploy, Secret } from "deploy.me"
export default Deploy
.name("telegram-bot")
.image("deploy.me/telegram-bot:1")
.target("ovh:rise-1@eu-west")
.env({ TELEGRAM_TOKEN: Secret.from("tg-token") })
.scale({ min: 1, max: 3, idle: "5m" })SCHEDULERS1 file
WEBHOOKS1 file