ArtCC / myfinancesbot-artcc

Telegram bot to add financial assets and liabilities and keep track of your personal finances.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

With this Telegram bot you can add your financial details to receive useful information about your monthly and yearly financial health.

*** Currently in development ***

You can add the bot to Telegram from this link

Commands in Spanish language to use the bot:

acciones - Elige una de las opciones para recibir información

borrar - Elimino todos tus datos. No podrás recuperarlos

donar - Puedes apoyar económicamente el proyecto. ¡Gracias!

ingresos - Añade o actualiza tus ingresos totales. Ej: /ingresos 1550.50

start - Te muestro información básica sobre mi funcionamiento

suscripcion - Añade una suscripción que tengas contratada. Ej: /suscripcion netflix 17.99 mensual 01-01-2021

Database in Heroku Postgres:

CREATE TABLE SUBSCRIPTIONS(
   ID SERIAL PRIMARY KEY NOT NULL,
   USER_ID INT NOT NULL,
   CHAT_ID INT NOT NULL,
   NAME TEXT NOT NULL,
   PRICE REAL NOT NULL,
   TYPE TEXT NOT NULL,
   DATE TEXT NOT NULL
);
CREATE TABLE USERS(
   USER_ID INT PRIMARY KEY NOT NULL,
   CHAT_ID INT NOT NULL,
   NAME TEXT NOT NULL,
   REVENUE REAL NOT NULL,
   CREATED_AT BIGINT NOT NULL
);

LICENSE

This project is free and use MIT license.

THANK YOU!

I hope you like it!

ArtCC 2021++

About

Telegram bot to add financial assets and liabilities and keep track of your personal finances.

License:MIT License


Languages

Language:JavaScript 100.0%