Giter Site home page Giter Site logo

hem4n7 / finance Goto Github PK

View Code? Open in Web Editor NEW

This project forked from hisabi-app/hisabi

0.0 0.0 0.0 8.24 MB

๐Ÿ’ฐ Open source self-hosted personal finance tracking web app

Home Page: https://finance-demo.saleem.dev

License: MIT License

PHP 94.66% Blade 5.02% Dockerfile 0.24% Makefile 0.08%

finance's Introduction

Hisabi is a simple yet powerful, self-hosted personal finance tracking web app with the ability to parse SMS transactions and generate very useful insights about your money. It's also powered by ChatGPT!

๐Ÿ’ฐ Sponsors

Support this project by becoming a sponsor โค๏ธ. Your logo will show up here with a link to your website. Become a sponsor

๐Ÿ›  Features

  1. Self-hosted - full control over your data privacy
  2. Parse SMS bank transactions
  3. Powerful AI model - HisabiGPT ๐Ÿ”ฅ - DEMO
  4. Detailed analysis of income and expenses
  5. Detailed monthly report of income and expenses - see example

๐ŸŽฎ Demo

Try the app with live demo.

โ–ถ๏ธ Installation

Docker Installation

  1. Method one (recommended)
git clone https://github.com/hisabi-app/hisabi && cd hisabi

make build # build the docker image
make run # the same as docker-compose up -d

# wait for a few seconds to allow the DB to finish the setup then run
make install # only for the first time
2. Method two (using docker-compose public hosted docker image)

First, create a docker-compose.yml file

version: '3'
services:
    app:
        image: 'salee2m1/hisabi:2.0.1'
        ports:
            - "80:80"
        networks:
            - hisabi
        depends_on:
            - mysql
        environment:
            OPENAI_API_KEY: 'YOUR_OPENAI_API_KEY'
    mysql:
        image: 'mysql/mysql-server:8.0'
        ports:
            - '3306:3306'
        environment:
            MYSQL_ROOT_PASSWORD: 'root'
            MYSQL_ROOT_HOST: "%"
            MYSQL_DATABASE: 'hisabi'
            MYSQL_USER: 'hisabi'
            MYSQL_PASSWORD: 'hisabi'
            MYSQL_ALLOW_EMPTY_PASSWORD: 1
        volumes:
            - 'hisabimysql:/var/lib/mysql'
        networks:
            - hisabi
        healthcheck:
            test: ["CMD", "mysqladmin", "ping", "-proot"]
            retries: 3
            timeout: 5s
networks:
    hisabi:
        driver: bridge
volumes:
    hisabimysql:
        driver: local

Then, inside the same directory run

docker-compose up -d
# wait for a few seconds to run the DB then run
docker-compose run app php artisan migrate
docker-compose run app php artisan hisabi:install

Once done, visit the app on http://localhost

Read full documentation

JetBrains Sponsorship

Thank you, JetBrains for sponsoring the license โค๏ธ

Get $200 DigitalOcean Credit

DigitalOcean Referral Badge

Project Visualization

Visualization of this repo

๐Ÿชš Built with

  1. Laravel
  2. Inertia & ReactJs
  3. GraphQL
  4. MySQL
  5. Docker

๐Ÿ”– License

This project is licensed under the MIT License - see the LICENSE.md file for details.

finance's People

Contributors

ahaneef29 avatar dependabot[bot] avatar saleem-hadad avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.