your-money-left-the-chat

A Rust + MCP powered financial tracker that knows exactly where your money ghosted you.

GitHub Stars

22

User Rating

Not Rated

Favorites

0

Views

33

Forks

3

Issues

0

Installation
Difficulty
Intermediate
Estimated Time
10-20 minutes

Installation

1Install Rust, SQLite, and Makefile
Rust: https://www.rust-lang.org/tools/install SQLite: https://sqlite.org/download.html GNU Make: https://www.gnu.org/software/make/
2Clone the Repo
bash
   https://github.com/Rayato159/your-money-left-the-chat
   cd your-money-left-the-chat
   
3Install Diesel CLI
bash
    cargo install diesel_cli --no-default-features --features sqlite
   
> If you facing with the error that can't find sqlite3.lib, Please install sqlite3 on your machine first.
4Create Sqlite Database
Just create file database.db in the: ./src/infrastructure/database/sqlite_data/
5Database Setup
Makefile: ```bash

Additional Resources