Home
Softono

MoneyManager

Open source JavaScript
18
Stars
6
Forks
8
Issues
0
Watchers
3 years
Last Commit

 About MoneyManager

Money management app to monitor daily finances.

Platforms

Web Self-hosted Cloud

Languages

JavaScript

Need Help Installing MoneyManager?

We provide expert installation service for this software. Our team will install, configure, and secure MoneyManager on your server. plans start at just $30.

MoneyManager

View on GitHub

MoneyManager

Full-stack web application for recording and monitoring daily finances.

Web app: https://moneymanager.gq/app
Android app: https://play.google.com/store/apps/details?id=com.shanzid.moneymanager
Homepage: https://moneymanager.gq


Technical overview

Fully responsive design - works with all major browsers and devices.

Built with

  • Firebase Cloud Functions for server-side processing (using NodeJS)
  • Firestore for database
  • ReactJS for the front-end (hosted on Firebase)
  • Firebase Authentication for user management (tldr; Full-stack app with FERN stack)

Project folder structure

  • 'client' folder contains all front-end code (built with create-react-app)
    • '/src/components' contains all "dumb" components
    • '/src/containers' contains all the primary screens
    • '/src/styles' contains all css styling
    • '/src/helpers' contains some basic Javascript code to help with some generic functions
    • '/src/keys' has to contain your own project configurations (obtained from firebase project console)
    • '/build' contains compiled code (npm run build)
    • index.js contains all routing configurations
      Everything else is boilerplate code.
  • 'functions' folder contains Firebase Cloud Functions code
    • entry point at 'index.js'
    • '/routes/api/exchanges.js' contains all the core server-side logic and request authentication
    • '/keys' folder has to contain firebase-admin SDK private key (firebase project console-->project settings-->service accounts)
  • 'android' folder contains relevant code for the one (and only) activity in the project (i.e. MainActivity)
    • MainActivity contains a WebView which loads the web app url

External resources/libraries

Author

License

This project is licensed under the MIT License.

NOTE: You must add your own firebase project configurations in the keys folders (in both '/client' and '/functions') to successfully deploy this project in your own environment.