Accounting & Financial Insights for SaaS Businesses powered by Stripe and Mercury
SaaSBooks connects directly to your Stripe and Mercury accounts to:
- Import and categorize transactions automatically
- Calculate SaaS metrics like MRR, customer acquisition cost, and burn rate
- Generate visualizations that show your business health at a glance
- Prepare exports for your accountant or tax software
- Store everything locally as simple JSON files you can version control
# Install dependencies
bun install
# Copy environment variables
cp .env.example .env
# Push database schema
bunx prisma db push
# Start development server
bun dev
SaaSBooks uses Google Drive to store your uploaded files (invoices, receipts, CSV exports). Here's how to set it up:
-
Create a Google Cloud Project
- Go to Google Cloud Console
- Create a new project or select an existing one
- Enable the Google Drive API for your project
-
Create OAuth Credentials
- Go to "Credentials" in API & Services
- Click "Create OAuth client"
- Choose "Web application"
- Add Authorized JavaScript origins:
- Development:
http://localhost:3000
- Production:
https://saasbooks.org
- Development:
- Add authorized redirect URI:
- Development:
http://localhost:3000/auth/google/callback
- Production:
https://saasbooks.org/auth/google/callback
- Development:
- Save your Client ID and Client Secret
- Go to "Scopes" in API & Services
- Click "ADD OR REMOVE SCOPES"
- Add the following scopes:
https://www.googleapis.com/auth/drive.file
(Allows access to files and folders created by the app)
-
Update Environment Variables
# In your .env file
GOOGLE_CLIENT_ID="your-client-id"
GOOGLE_CLIENT_SECRET="your-client-secret"
GOOGLE_REDIRECT_URI="http://localhost:3000/auth/google/callback"
When users connect their Google Drive:
- They'll be prompted to sign in with Google
- They'll need to authorize the app
- A dedicated folder will be created in their Drive
- All uploads will be stored in this folder
SaaSBooks is 100% free and open source. We believe financial tools should be:
- Transparent - You should know exactly how your financial data is processed
- Customizable - Every SaaS business has unique needs
- Accessible - Financial clarity should be available to all SaaS businesses, not just those who can afford $300/month tools
This project is sponsored by the community. If you find it valuable:
- GitHub Sponsors - Support ongoing development
- Share with other founders - Help us grow
- Contribute code or documentation - PRs welcome!
We need anonymized Stripe/Mercury exports to improve our auto-categorization system. Learn how to contribute data safely.
SaaSBooks focuses on financial clarity for founders, not comprehensive accounting.
When you're ready for formal accounting software, we recommend:
- QuickBooks Online - Best for US-based businesses
- Xero - Great international support
Note: These are affiliate links that help support SaaSBooks development.
MIT License
SaaSBooks is released under the MIT License, which is a permissive open source license that allows you to:
- Use the software for any purpose
- Modify the software as needed
- Distribute the software and your modifications
- Use the software commercially
The only requirement is that you include the original copyright notice and license disclaimer in any copy of the software or substantial portion of it.
See the LICENSE file for the full legal text.