GithubHelp home page GithubHelp logo

thm-design / budget-manager Goto Github PK

View Code? Open in Web Editor NEW

This project forked from shoshinnikita/budget-manager

0.0 1.0 0.0 5.43 MB

Easy-to-use, lightweight and self-hosted solution to track your finances

License: MIT License

Makefile 1.37% Go 71.67% Dockerfile 0.53% HTML 24.13% CSS 1.66% JavaScript 0.64%

budget-manager's Introduction

Budget Manager Last version GitHub Workflow Status Go Report Card

Budger Manager is an easy-to-use, lightweight and self-hosted solution to track your finances

Month Page

It was inspired by Poor-Man's Budgeting Spreadsheet and You have less money than you think (rus). These projects have a fatal flaw: you can't add multiple spends in a single day. Budger Manager resolves that issue

Features:

  • Easy-to-use - simple and intuitive UI

  • Lightweight - backend is written in Go, HTML is prepared with Go templates. Vanilla JavaScript is used just to make frontend interactive. So, JS code is very primitive and lightweight: it won't devour all your CPU and RAM (even with Chrome ๐Ÿ˜‰)

  • Self-hosted - you don't need to trust any proprietary software to store your financial information

You can find more screenshots here


Install

You need Docker and docker-compose (optional)

  1. Create docker-compose.yml with the following content (you can find more settings in Configuration section):

    version: "2.4"
    
    services:
      budget-manager:
        image: ghcr.io/shoshinnikita/budget-manager:latest
        container_name: budget-manager
        environment:
          DB_TYPE: postgres
          DB_PG_HOST: postgres
          DB_PG_PORT: 5432
          DB_PG_USER: postgres
          DB_PG_PASSWORD: very_strong_password
          DB_PG_DATABASE: postgres
          SERVER_PORT: 8080
          SERVER_CREDENTIALS: your credentials # more info in 'Configuration' section
        ports:
          - "8080:8080"
    
      postgres:
        image: postgres:12-alpine
        container_name: budget-manager_postgres
        environment:
          POSTGRES_USER: postgres
          POSTGRES_PASSWORD: very_strong_password
          POSTGRES_DB: postgres
        volumes:
          # Store data in ./var/pg_data directory
          - type: bind
            source: ./var/pg_data
            target: /var/lib/postgresql/data
        command: -c "log_statement=all"
  2. Run docker-compose up -d

  3. Go to http://localhost:8080 (change the port if needed)

  4. Profit!

Configuration

Env Var Default value Description
DEBUG false Is Debug Mode on
LOGGER_MODE prod Logger mode. Available options: prod (or production), dev (or develop).
LOGGER_LEVEL info Min level of log messages. Available options: debug, info, warn, error, fatal

Note: level is always debug when Debug Mode is on
DB_TYPE postgres Database type. Only postgres is available now
DB_PG_HOST localhost Host for connection to the db
DB_PG_PORT 5432 Port for connection to the db
DB_PG_USER postgres Use for connection to the db
DB_PG_PASSWORD Password for connection to the db
DB_PG_DATABASE postgres Database for connection
SERVER_PORT 8080
SERVER_USE_EMBED true Defines whether server should use embedded templates and static files

Note: false value won't work for Docker container
SERVER_CREDENTIALS List of comma separated login:password pairs. Password must be encrypted with MD5 algorithm (you can use this command openssl passwd -apr1 YOUR_PASSWORD)

More info about password encryption: Password Formats - Apache HTTP Server
SERVER_SKIP_AUTH false Disables authentication
SERVER_ENABLE_PROFILING false Enable pprof handlers. You can find handler urls here

Development

Commands

Run

# Run the app with installed Go and PostgreSQL in Docker container
make

# Or run both the app and PostgreSQL in Docker containers
make docker

Test

make test

More

You can find more commands in Makefile

Tools

Linter

golangci-lint can be used to lint the code. Just run make lint. Config can be found here

API documentation

swag is used to generate API documentation. You can find more information about API endpoints in section API

Endpoints

Pages

You can find screenshots of pages here

  • /months - Last 12 months
  • /{year}-{month} - Month info
  • /search/spends - Search for Spends

API

You can find Swagger 2.0 Documentation here. Use Swagger Editor to view it

budget-manager's People

Contributors

shoshinnikita avatar

Watchers

 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.