Skip to content

A NodeJS telegram bot to keep track of expenses and incomes

Notifications You must be signed in to change notification settings

bragg13/check-your-wallet-bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Check your Wallet

Just another Telegram bot to keep track of your expenses and incomes. Made years ago, would totally benefit some deep refactoring.

Features available

  • add notes to your expenses/incomes
  • divide expenses/incomes by category
  • track how you are doing by category, date interval or month
  • add emoji reaction to your incomes (useful? not at all)
  • handle different currencies

Couple of screenshots

Show more




Features to be implemented (at some point)

  • [-] conversion between currencies
  • [-] add expenses/incomes when receiving a bank notification
  • [-] monthly recap of your finances
  • [-] recurring expenses
  • [-] custom categories
  • [-] webhooks instead of polling

The project is not under active development.

How to run

  1. Clone the repository
git clone https://github.com/bragg13/check-your-wallet-bot.git
  1. Install dependencies
npm install
  1. Setup a MongoDB database. You can use a free tier on MongoDB Atlas, or run a local instance with docker-compose as following:
docker-compose -f docker-compose.yaml up

Remember to change the user and password in the docker-compose.yaml file.

  1. Create a bot on Telegram using BotFather and get the token. You can talk to the BotFather on Telegram at the address @BotFather.

  2. Create a .env file with the following variables:

MONGODB_URL="your MongoDB connection string"
BOT_TOKEN="your BotFather token"

If you use docker-compose to run the database, the connection string should be something like mongodb://USR:PSW@localhost:PORT/?directConnection=true.

  1. Run the bot
npm start

About

A NodeJS telegram bot to keep track of expenses and incomes

Topics

Resources

Stars

Watchers

Forks