Telegram bot helps putting all your expenses into YNAB at the end of the day. Built with NestJS.
Requires Node.js 22 LTS.
$ npm installThis project includes a Dev Container configuration. With the VS Code Dev Containers extension, you can open the repository directly in a container running Node.js 22 with TypeScript. The container installs dependencies automatically, exposes port 3000, and mounts your local SSH agent so Git commands work with your existing credentials.
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov