Code Monkey home page Code Monkey logo

budgetbee's Introduction

Server Tests Build and Push Docker Image CodeFactor

BudgetBee

BudgetBee is a personal budget system

Disclaimer

  • ⚠️ The project is under very active development.
  • ⚠️ Expect bugs and breaking changes.
  • ⚠️ Important, do not use this application as the only app to record your finances until you have a stable version v1.0.0.

If you want to contribute to this project, you can!

Buy Me A Coffee

Installation

BudgetBee is installed via docker-compose, if you want to do an installation from e.g. Portainer, copy the /docker/compose file file, populate the variables and deploy it in your portainer application.

Copy the following code to install BudgetBee

version: '3'
services:
  nginx:
    image: ghcr.io/budgetbee/budgetbee/proxy:latest
    command: nginx -g "daemon off;"
    ports:
      - "8201:80"
    restart: unless-stopped
    networks:
      - skynet

  webserver:
    image: ghcr.io/budgetbee/budgetbee/api:latest
    working_dir: /var/www/html
    command: sh entrypoint.sh
    environment:
      DB_HOST: db
      DB_DATABASE: "budgetbee"
      DB_USERNAME: "budgetbee_user"
      DB_PASSWORD: "budgetbee_password"
    restart: unless-stopped
    networks:
      - skynet

  web:
    image: ghcr.io/budgetbee/budgetbee/web:latest
    restart: unless-stopped
    networks:
      - skynet

  db:
    image: mysql:8
    command: --default-authentication-plugin=mysql_native_password
    environment:
      MYSQL_ROOT_PASSWORD: "budgetbee_password_root"
      MYSQL_DATABASE: "budgetbee"
      MYSQL_USER: "budgetbee_user"
      MYSQL_PASSWORD: "budgetbee_password"
    restart: unless-stopped
    volumes:
      - db_data:/var/lib/mysql
    networks:
      - skynet

networks:
  skynet:

volumes:
  db_data:

Important

Wait around 30 seconds after all containers are up to execute the create user command

To create a user, run this command from your local machine, substituting the values with the ones you want

docker exec budgetbee-webserver-1 php scripts/create_user.php <your_name> <your_email> <your_password>

Star History

Star History Chart

Updates

To upgrade your BudgetBee application to the latest version, rebuild your docker-compose images and re-upload the containers. This can be done easily by:

docker-compose up -d --build

Documentation

This section is currently under development

Contributing

If you would like to collaborate with BudgetBee, you can do so by

Bugs

For bugs please open an issue

budgetbee's People

Contributors

pelukosa avatar dependabot[bot] 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.