#127
B+
Rank #129
Maybe
A modern personal finance and wealth management app covering budgeting, net worth tracking, and investment monitoring, recently open-sourced with strong community momentum. Standout trait is a genuinely polished Rails/Hotwire UI compared to older finance tools.
68.3
/ 100
β Full Stack
Ruby on Rails 7 monolith using Hotwire/Turbo for interactivity, backed by Postgres and Redis (for Sidekiq background jobs like account syncing). Official Docker image and docker-compose setup are actively maintained.
π Scaling Analysis
Solid modern Rails architecture with Sidekiq offloading background sync work from the request cycle, giving reasonable scaling headroom for small-to-mid user bases. Still a monolith at heart β very large multi-tenant scale would need the usual Rails scaling playbook (more app/worker replicas, DB read replicas).
π Running on Nexlayer
Three-pod deploy β app, Postgres (`postgres.pod:5432`), and Redis (`redis.pod:6379`) β with `RAILS_HOST`/similar config pointed at the Nexlayer `<% URL %>` domain. Sidekiq workers can run in the same pod as the web process for a simple deploy, or split into a dedicated worker pod for heavier sync workloads.