katefike / sage

A personal finance app that's like Mint, but better. It uses a dockerized postfix/dovecot email server. Parses transaction data from alert emails.
MIT License
5 stars 0 forks source link
ansible dovecot email imap postfix postgres python

sage

This app is like Mint, but better actually exists. It collects all of your personal financial data. The data is collected from alert emails sent from your financial institutions. The bank alert emails can be directed to your personal email account, such as a Gmail account. Then setup your account to forward the alert emails to a self-hosted MX. The financial data in the emails is extracted, stored, and made viewable.

Thank you @nhopkinson and @whosgonna for their ongoing feedback on this project.

Abbreviations

Production Setup Instructions

This app is mostly production ready! The Grafana and Nginx containers are currently under development. For questions, problems and enhancements, open a github issue.

  1. Globally install the following software:
    Python 3.7 or higher
  2. Run the first setup script. This will create a .env file using the file .env-example as a template.
    bash setup/1_setup_sage_directory.sh
  3. Define the following environment variables in the .env file:
    DOMAIN: Buy a domain name.
    FORWARDING_EMAIL: Set up the email account that receives the transaction alert emails. This account needs to forward all emails to the receiving email address on the MX. The default receiving email address is incoming@DOMAIN. So if you purchased the domain localhost, the receiving email address would me incoming@localhost
    RECEIVING_EMAIL_PASSWORD: The password for the MX account that receives transaction emails. The password is used to access the emails programatically (imap).
    DO_API_TOKEN: Create a Digital Ocean API Key. It's located in the "API" portion of their menu.
    PROD_SSH_PUBLIC_KEY: Create SSH keys for you to SSH to the production server. Ensure the private key permissions are restricted.For help see the section "Production Setup Troubleshooting." Copy/paste the public key here.
    PROD_SSH_PRIVATE_KEY_FILE_PATH: Copy/paste the path to the private key file here.
    SERVER_USER: Your user the production server.
    SERVER_USER_PASSWORD: Your user's password on the production server.
    SSH_ALLOWED_PUBLIC_IPS: List the public IPs that can access to the production server.
    POSTGRES_PASSWORD: admin role's password.
    POSTGRES_ETL_PASSWORD: etl role's password.
    POSTGRES_GRAFANA_PASSWORD: grafanareader role's password
    POSTGRES_GRAFANA_SSL_MODE: Change this to "enable".
    GRAFANA_PASSWORD: Grafana admin user's password.
  4. WARNING: RUNNING THIS SCRIPT CAUSES DIGITAL OCEAN TO START CHARGING YOU MONEY ON A MONTHLY BASIS FOR YOUR PRODUCTION SERVER.
    Run the script to create a production Digital Ocean Droplet server that runs the application.
    bash setup/2_create_prod_server.sh
    If an error occurs, go to Digital Ocean and delete the Droplet and firewall before running the script again.
    It will prompt you for BECOME password:; enter your sudo password.
  5. Run the script to configure the production Digital Ocean Droplet server.
    bash setup/3_configure_prod_server.sh
    This script is idempotent: no matter how many times you run it, the result will be the same. So if an error occurs, simply troubleshoot and run the script again until the error is resolved.
  6. WARNING: CREATING DIGITAL OCEAN VOLUMES ALSO COST MONEY, BUT THEY'RE HELPFUL FOR DISASTER RECOVERY. AT THIS TIME, THE VOLUMES ARE NOT OPTIONAL FOR THE DEPLOYMENT. In the Digital Ocean console, go to the "Volumes Block Storage" tab and create two volumes: sage-db and sage-mx.
  7. In the Digital Ocean console, attach each volume to the Droplet. SSH to the Droplet and run the commands Digital Ocean provides to mount each volume.
  8. In the Digital Ocean console, create the NS records for the domain name you purchased, corresponding to $DOMAIN in the .env.
  9. In the Digital Ocean console, create an A record for the Droplet using "prod.< $DOMAIN >" as the hostname. For example, if $DOMAIN is example.com, then the hostname is prod.example.com. Use the floating IP as the value.
  10. In the Digital Ocean console, create a MX record for the Droplet using $DOMAIN as the hostname. For example, if $DOMAIN is example.com, then the hostname is prod.example.com.
  11. Re-run bash setup/3_configure_prod_server.sh to deploy Sage using the mounted volumes.
    TODO: Create and mount Digital Ocean volumes during automated production deployment https://github.com/katefike/sage/issues/145
  12. Go to the Grafana login URL https://prod.< $DOMAIN >. For example, my $DOMAIN is example.com, so the URL is https://prod.example.com. At this URL, you should see "Welcome to Grafana" with a login prompt.

Additional Documentation

All additional documentation can be found in the docs/ directory.