Starter kit for TypeScript bot for Automa
Please read the Bot Development docs to understand how an Automa bot works and how to develop it.
/automaendpoint is the receiver for the webhook from Automaupdatefunction insrc/update.tsis the logic responsible for updating code.AUTOMA_WEBHOOK_SECRETenvironment variable is available to be set instead of hard-coding it.
Start the app in production mode:
pnpm build
NODE_ENV=production pnpm startNeeds git to be installed on production.
Start the app in development mode:
pnpm dev
pnpm start # In separate tabRun tests with:
pnpm build
pnpm test- Uses fastify as a server.