diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 20246f5..5bd7f23 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,5 +20,4 @@ jobs: source ~/.nvm/nvm.sh cd farcaster-praise-bot git pull origin main - pm2 stop all - pm2 start --interpreter ~/.bun/bin/bun index.ts \ No newline at end of file + pm2 reload all \ No newline at end of file diff --git a/index.ts b/index.ts index 156f5a6..e6a47d2 100644 --- a/index.ts +++ b/index.ts @@ -2,7 +2,7 @@ const server = Bun.serve({ port: 3000, async fetch(req) { try { - return new Response("Welcome to my Farcaster praise bot!!!"); + return new Response("Welcome to my Farcaster praise bot!!!!!"); } catch (e: any) { return new Response(e.message, { status: 500 }); }