Just another Telegram bot to keep track of your expenses and incomes. Made years ago, would totally benefit some deep refactoring.
- 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
- [-] 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.
- Clone the repository
git clone https://github.com/bragg13/check-your-wallet-bot.git
- Install dependencies
npm install
- 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.
-
Create a bot on Telegram using BotFather and get the token. You can talk to the BotFather on Telegram at the address
@BotFather
. -
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
.
- Run the bot
npm start