Skip to content

Repository files navigation

ko-fi

Nextcloud Budget

⚠️Beta: This app is under active development. While stable, please backup your data regularly and report any issues you encounter.

A comprehensive financial management app for Nextcloud. Track spending habits, manage multiple accounts, and forecast future balances through intelligent analysis of your financial history.

Dashboard Screenshot

What's New in v2.27

  • Quick Add Standalone Page - Minimal mobile page for adding transactions without exposing balances. Bookmark it or add to your home screen (#235)
  • Shared Account Support - Reports, forecasts, net worth, and dashboard now include data from shared accounts. Shared users can delete, update, and split transactions (#215, #245)
  • Dismissed Imports - Deleted bank sync transactions won't be re-imported. Force re-sync button available when needed (#230)
  • Transaction Type Rule Criteria - Rules can now filter by Income or Expense, with Auto-Link as Transfer action (#229)
  • Semi-Monthly Frequency - Twice-per-month option for bills, income, and transfers (Discussion #239)
  • System Info Diagnostics - Settings panel with data stats, server info, and logs for troubleshooting (#228)
  • CI Pipeline - Automated linting, tests, and migration name validation on every push

See the full changelog for details.

Documentation

Full user documentation is available in the docs/ directory:

Popular topics:

Features

Dashboard & Visualization

  • Customizable Dashboard - Gridstack.js-powered drag-and-drop with lock/unlock editing, column picker, and per-tile sizing (S/M/L)
  • Duplicate Tiles - Add multiple instances of chart and transaction tiles, each with independent account/period settings
  • 28+ Dashboard Tiles - Hero metrics, spending insights, forecasting, budget tracking, and more
  • Interactive Charts - Cash flow forecasts, year-over-year comparisons, net worth history with Chart.js
  • Auto-Updating Tiles - Dashboard refreshes automatically when transactions or budgets change

Account & Transaction Management

  • Multi-Account Management - Track bank accounts, credit cards, cash, and cryptocurrency across 45+ currencies
  • Transaction Tracking - Add, edit, categorize, and search transactions with advanced filtering
  • Bulk Operations - Delete, reconcile, or edit multiple transactions at once
  • Configurable Table Columns - Show/hide columns to customize your transaction view
  • Split Transactions - Allocate single transactions across multiple categories
  • Transaction Matching - Automatic transfer detection and linking between accounts
  • Transfer Creation - Create linked transfer transactions directly from transaction form
  • Pending Transactions - Future-dated transactions shown with visual indicators and filterable status (All / Cleared / Pending)

Import & Automation

  • Bank Sync (Beta) - Connect external bank accounts for automatic transaction imports
    • GoCardless provider for UK/Europe banks with guided setup wizard and bank selection
    • SimpleFIN provider for US banks
    • Daily background sync with duplicate detection
    • Re-authorization flow when bank consent expires (PSD2 90-day limit)
    • Sync all connections at once with aggregated results
    • Encrypted credential storage
    • Admin-enabled with experimental feature warnings
  • Smart Import - Import bank statements from CSV, OFX, and QIF formats
    • Auto-detection of CSV delimiters (comma, semicolon, tab)
    • Dual-column amount mapping for separate income/expense columns
    • European number format support (1.234,56)
    • Automatic vendor matching and duplicate detection
  • Advanced Rules Engine - Powerful auto-categorization with visual query builder
    • Complex boolean expressions with AND/OR/NOT operators
    • Nested criteria groups with unlimited depth
    • Multiple actions: category, vendor, notes, tags, account, type, reference
    • Preview matches before saving, run rules on existing transactions anytime
    • Priority-based execution with behavior settings (always, if_empty, append, merge)
  • Hierarchical Categories - Organize spending with nested categories and drag-and-drop reordering
  • Tag Sets - Multi-dimensional transaction categorization with custom tag sets per category

Budgeting & Planning

  • Budget Tracking - Set spending limits by category with alerts when approaching or exceeding budgets
    • Per-month budget adjustments — change budgets from any month forward without affecting historical data
    • Dynamic period switching (weekly, monthly, quarterly, yearly)
    • Automatic pro-rating when changing budget periods
    • Parent category aggregation — parent budgets show combined totals with children
    • Real-time progress tracking with visual indicators
  • Balance Forecasting - Predict future balances using trend analysis and scenario modeling
  • Recurring Bills - Detect and track recurring payments
    • Auto-pay option to automatically mark bills as paid on due date
    • Create future transactions for cash flow planning
    • Bill reminders via Nextcloud notifications
    • Custom frequency patterns (select specific months for irregular bills)
  • Bills Calendar - Annual overview showing which months bills are due
    • Interactive heatmap visualization
    • Monthly totals with bar chart
    • Filter by status and include/exclude transfers
  • Recurring Income - Track expected income sources (salary, dividends, etc.) with receipt tracking
  • Recurring Transfers - Track and automate transfers between accounts
    • Monthly equivalent calculations for different frequencies
    • Integration with bills system for unified tracking

Assets & Goals

  • Asset Tracking - Track non-liquid assets (real estate, vehicles, jewelry, collectibles)
    • Value history with snapshots over time
    • Appreciation/depreciation projections with interactive charts
    • Integrated into net worth calculations
  • Debt Payoff Planner - Plan debt repayment using avalanche or snowball strategies
    • Repayment charts with stacked area / individual line toggle
    • Named scenarios with extra payments, lump sums, debt selection, and rate overrides
    • Strategy comparison with side-by-side metrics and recommendation
    • Progress tracking against active scenario (ahead/behind/on track)
    • Dashboard widgets: chart sparkline, progress countdown, days until debt free
  • Savings Goals - Set financial targets with progress tracking and achievement forecasting
    • Link goals to tags for automatic amount calculation from tagged transactions
  • Pension Tracker - Track retirement accounts with growth projections and combined forecasts

Sharing & Collaboration

  • Shared Expenses - Share expenses with roommates, partners, or friends and track who owes whom
    • Settlement tracking with payment history
    • Contact integration with Nextcloud

Reporting & Analysis

  • Net Worth History - Track assets, liabilities, and non-liquid assets over time with interactive charts
    • Daily automatic snapshots with manual recording option
    • Multi-currency conversion to default currency via ECB and CoinGecko rates
    • Status indicators showing last snapshot timing
  • Bills Calendar - Visualize when bills are due throughout the year
  • Year-over-Year Reports - Compare spending across multiple years side-by-side
  • Reports & Charts - Visualize spending patterns, income, and cash flow over time

Security & Data Management

  • Password Protection - Optional secondary password layer for enhanced app security
    • Session management with configurable timeout (15/30/60 minutes)
    • Auto-lock on inactivity with manual lock option
    • Failed attempt protection (5 attempts = 5-minute lockout)
  • Data Export/Import - Full data migration support for moving between Nextcloud instances
  • Factory Reset - Restore app to empty state with one-click data deletion (preserves audit logs)
  • Audit Logging - Complete trail of all financial actions

Requirements

  • Nextcloud 30 - 35
  • PHP 8.1+
  • MySQL/MariaDB, PostgreSQL, or SQLite

Installation

From App Store (Recommended)

  1. Log in to your Nextcloud instance as admin
  2. Go to Apps > Office & text
  3. Search for "Budget"
  4. Click Download and enable

Manual Installation

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install dependencies
composer install --no-dev --optimize-autoloader
npm install
# Build frontend
npm run build

Enable the app:

php occ app:enable budget

Development

Setup Development Environment

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install all dependencies
composer install
npm install
# Build for development
npm run dev
# Watch for changes
npm run watch

Build Commands

CommandDescription
npm run buildProduction build
npm run devDevelopment build with source maps
npm run watchAuto-rebuild on file changes
npm run lintRun ESLint
npm run lint:fixAuto-fix linting issues

Project Structure

budget/
├── appinfo/ # App metadata and routing
├── lib/
│ ├── Controller/ # API endpoints
│ ├── Service/ # Business logic
│ ├── Db/ # Database models and mappers
│ ├── Enum/ # Type definitions
│ └── Migration/ # Database schema versions
├── src/ # Frontend source (ES6+)
│ ├── modules/ # Feature-based modules (17 modules)
│ ├── core/ # Router and infrastructure
│ ├── utils/ # Shared utilities
│ └── config/ # Dashboard widgets configuration
├── js/ # Compiled JavaScript
├── css/ # Compiled styles
├── templates/ # PHP templates
└── tests/ # PHPUnit test suites

Usage

See the full documentation for detailed guides on every feature.

Getting Started

  1. Add Accounts - Navigate to the Accounts section and add your bank accounts
  2. Import Transactions - Use the Import feature to upload your bank statements
  3. Set Up Categories - Create categories that match your spending patterns
  4. Configure Import Rules - Set up rules to automatically categorize future imports
  5. Track Bills - Add recurring bills to monitor upcoming payments
  6. Set Goals - Create savings goals to track progress toward financial targets

Importing Bank Statements

The app supports the following formats:

  • CSV - Most banks provide CSV exports (supports European formats)
  • OFX - Open Financial Exchange format
  • QIF - Quicken Interchange Format

CSV Import Tips

  1. The first row should contain column headers
  2. Common columns: Date, Description, Amount, Balance
  3. Use the column mapping feature to match your bank's format
  4. For European banks with separate income/expense columns, use dual-column amount mapping
  5. The app auto-detects delimiters (comma, semicolon, tab)

Setting Up Import Rules

The advanced rules engine uses a visual query builder for complex patterns:

  1. Go to Rules in the navigation menu
  2. Click Add Rule
  3. Build criteria using the visual query builder:
    • Add conditions (field, match type, pattern)
    • Group conditions with AND/OR operators
    • Use NOT operator for negation
    • Create nested groups for complex logic
  4. Configure actions (category, vendor, notes, etc.)
  5. Set priority and behavior (always, if_empty, append, merge)
  6. Preview to test matches before saving
  7. Run Now to apply to existing transactions

Bills and Transfers

Bills:

  • Add recurring bills with custom frequency patterns
  • Enable auto-pay to automatically mark bills as paid on due date
  • Create future transactions for cash flow planning
  • View annual bills calendar to see when bills are due throughout the year

Transfers:

  • Track recurring transfers between accounts (e.g., monthly savings transfers)
  • Enable auto-pay for automatic execution
  • Set transaction description patterns for import matching

Forecasting

The forecast feature analyzes historical spending to predict future balances:

  1. Select the account(s) to forecast
  2. Choose the historical period to analyze (3, 6, or 12 months)
  3. Select the forecast horizon
  4. Generate the forecast

The forecast considers:

  • Regular income patterns
  • Recurring expenses
  • Seasonal variations
  • Average spending by category

Data Migration

To move your data between Nextcloud instances:

  1. Export - Go to Settings > Data Migration > Export to download all your data
  2. Import - On the new instance, go to Settings > Data Migration > Import and upload the export file

API

The app provides a REST API for all functionality:

EndpointDescription
/api/accountsAccount management
/api/transactionsTransaction CRUD and search
/api/categoriesCategory hierarchy
/api/budget-snapshotsPer-month budget adjustments
/api/bank-syncExternal bank sync (Beta)
/api/admin/settingsAdmin settings (bank sync toggle)
/api/tag-setsTag set management
/api/importBank statement import
/api/import-rulesAdvanced auto-categorization rules
/api/forecastBalance predictions
/api/billsRecurring bill tracking with auto-pay
/api/transfersRecurring transfers between accounts
/api/goalsSavings goal management
/api/assetsNon-liquid asset tracking
/api/pensionsPension account tracking
/api/debtsDebt payoff planning
/api/debt-scenariosDebt scenario management
/api/reportsFinancial reports
/api/migrationData export/import
/api/authPassword protection

Troubleshooting

Import fails with "Invalid format"

  • Ensure your CSV has headers in the first row
  • Check that date format matches your locale settings
  • Verify the file encoding is UTF-8
  • For European formats, the app will auto-detect delimiters and number formats

Transactions not categorizing automatically

  • Check that import rules are active
  • Use the Preview feature to test rule matching before saving
  • Verify rule patterns match transaction descriptions
  • Review rule priority order (higher priority rules execute first)

Forecast seems inaccurate

  • Ensure you have at least 3 months of transaction history
  • Check for unusual one-time transactions that might skew averages
  • Verify all regular transactions are properly categorized

Categories page is blank

  • Verify categories were imported successfully via Settings > Data Migration
  • Check browser console for JavaScript errors
  • Try refreshing browser cache (Ctrl+F5 / Cmd+Shift+R)

Help Translate

Nextcloud Budget is fully translatable with 2,177+ strings. We'd love your help making it available in more languages!

Translate on Weblate — translate directly in your browser, no coding required. Just sign in, pick your language, and start. Your translations are automatically merged into the app.

Translation status

Currently available in: English, German, Spanish, French, Russian, Portuguese (Brazil), and Czech.

Special thanks to our translators: @SGiersch (German), @T0mFi and Pavel Borecki (Czech).

Note: Strings containing {placeholders} (e.g. {amount}, {bill}) must keep the placeholder names exactly as-is — only translate the surrounding text.

Alternative: translate via pull request

If you prefer working with .po files directly:

  1. Copy budget/translationfiles/templates/budget.pot to budget/translationfiles/<lang>/budget.po
  2. Translate the strings using Poedit or any .po editor
  3. Submit a pull request

See the translation guide for detailed instructions.

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/my-feature)
  3. Make your changes
  4. Run tests (make test) and linting (make lint)
  5. Submit a pull request

Acknowledgements

This app is shaped by its community. Thanks to everyone who reports bugs, suggests features, and contributes translations:

  • @SGiersch — Top contributor: dozens of bug reports, feature discussions, and German translation
  • @TerjeTM — Thorough testing and detailed bug reports that led to major improvements in the bills system and data repair tools
  • @JaviAZ — Code contributions and bug reports around category spending and transfers
  • @H2Oufoe — Extensive bug reporting and testing across multiple releases
  • @st33vil — Identified the pagination balance calculation bug
  • @T0mFi, Pavel Borecki — Czech translation
  • @raduberbece, @MrTCAJ, @mschur — Bug reports and feedback

License

This project is licensed under the AGPL-3.0-or-later license.

Support

About

Budget application for Nextcloud cloud.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { // Add copy buttons to all
 blocks
(function() {
function addCopyButtons() {
document.querySelectorAll('pre code').forEach(function(codeBlock) {
if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;
codeBlock.parentElement.setAttribute('data-copy-added', 'true');
var btn = document.createElement('button');
btn.textContent = 'Copy';
btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';
btn.onmouseover = function() { this.style.opacity = '1'; };
btn.onmouseout = function() { this.style.opacity = '0.7'; };
btn.onclick = function() {
navigator.clipboard.writeText(codeBlock.textContent).then(function() {
btn.textContent = 'Copied!';
setTimeout(function() { btn.textContent = 'Copy'; }, 1500);
});
};
codeBlock.parentElement.style.position = 'relative';
codeBlock.parentElement.appendChild(btn);
});
}
addCopyButtons();
// Re-run on dynamic content
var observer = new MutationObserver(addCopyButtons);
observer.observe(document.body, { childList: true, subtree: true });
})();
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
GitHub - TheUnderdev/Budget: Budget application for Nextcloud cloud. · GitHub
Skip to content

Repository files navigation

ko-fi

Nextcloud Budget

⚠️Beta: This app is under active development. While stable, please backup your data regularly and report any issues you encounter.

A comprehensive financial management app for Nextcloud. Track spending habits, manage multiple accounts, and forecast future balances through intelligent analysis of your financial history.

Dashboard Screenshot

What's New in v2.27

  • Quick Add Standalone Page - Minimal mobile page for adding transactions without exposing balances. Bookmark it or add to your home screen (#235)
  • Shared Account Support - Reports, forecasts, net worth, and dashboard now include data from shared accounts. Shared users can delete, update, and split transactions (#215, #245)
  • Dismissed Imports - Deleted bank sync transactions won't be re-imported. Force re-sync button available when needed (#230)
  • Transaction Type Rule Criteria - Rules can now filter by Income or Expense, with Auto-Link as Transfer action (#229)
  • Semi-Monthly Frequency - Twice-per-month option for bills, income, and transfers (Discussion #239)
  • System Info Diagnostics - Settings panel with data stats, server info, and logs for troubleshooting (#228)
  • CI Pipeline - Automated linting, tests, and migration name validation on every push

See the full changelog for details.

Documentation

Full user documentation is available in the docs/ directory:

Popular topics:

Features

Dashboard & Visualization

  • Customizable Dashboard - Gridstack.js-powered drag-and-drop with lock/unlock editing, column picker, and per-tile sizing (S/M/L)
  • Duplicate Tiles - Add multiple instances of chart and transaction tiles, each with independent account/period settings
  • 28+ Dashboard Tiles - Hero metrics, spending insights, forecasting, budget tracking, and more
  • Interactive Charts - Cash flow forecasts, year-over-year comparisons, net worth history with Chart.js
  • Auto-Updating Tiles - Dashboard refreshes automatically when transactions or budgets change

Account & Transaction Management

  • Multi-Account Management - Track bank accounts, credit cards, cash, and cryptocurrency across 45+ currencies
  • Transaction Tracking - Add, edit, categorize, and search transactions with advanced filtering
  • Bulk Operations - Delete, reconcile, or edit multiple transactions at once
  • Configurable Table Columns - Show/hide columns to customize your transaction view
  • Split Transactions - Allocate single transactions across multiple categories
  • Transaction Matching - Automatic transfer detection and linking between accounts
  • Transfer Creation - Create linked transfer transactions directly from transaction form
  • Pending Transactions - Future-dated transactions shown with visual indicators and filterable status (All / Cleared / Pending)

Import & Automation

  • Bank Sync (Beta) - Connect external bank accounts for automatic transaction imports
    • GoCardless provider for UK/Europe banks with guided setup wizard and bank selection
    • SimpleFIN provider for US banks
    • Daily background sync with duplicate detection
    • Re-authorization flow when bank consent expires (PSD2 90-day limit)
    • Sync all connections at once with aggregated results
    • Encrypted credential storage
    • Admin-enabled with experimental feature warnings
  • Smart Import - Import bank statements from CSV, OFX, and QIF formats
    • Auto-detection of CSV delimiters (comma, semicolon, tab)
    • Dual-column amount mapping for separate income/expense columns
    • European number format support (1.234,56)
    • Automatic vendor matching and duplicate detection
  • Advanced Rules Engine - Powerful auto-categorization with visual query builder
    • Complex boolean expressions with AND/OR/NOT operators
    • Nested criteria groups with unlimited depth
    • Multiple actions: category, vendor, notes, tags, account, type, reference
    • Preview matches before saving, run rules on existing transactions anytime
    • Priority-based execution with behavior settings (always, if_empty, append, merge)
  • Hierarchical Categories - Organize spending with nested categories and drag-and-drop reordering
  • Tag Sets - Multi-dimensional transaction categorization with custom tag sets per category

Budgeting & Planning

  • Budget Tracking - Set spending limits by category with alerts when approaching or exceeding budgets
    • Per-month budget adjustments — change budgets from any month forward without affecting historical data
    • Dynamic period switching (weekly, monthly, quarterly, yearly)
    • Automatic pro-rating when changing budget periods
    • Parent category aggregation — parent budgets show combined totals with children
    • Real-time progress tracking with visual indicators
  • Balance Forecasting - Predict future balances using trend analysis and scenario modeling
  • Recurring Bills - Detect and track recurring payments
    • Auto-pay option to automatically mark bills as paid on due date
    • Create future transactions for cash flow planning
    • Bill reminders via Nextcloud notifications
    • Custom frequency patterns (select specific months for irregular bills)
  • Bills Calendar - Annual overview showing which months bills are due
    • Interactive heatmap visualization
    • Monthly totals with bar chart
    • Filter by status and include/exclude transfers
  • Recurring Income - Track expected income sources (salary, dividends, etc.) with receipt tracking
  • Recurring Transfers - Track and automate transfers between accounts
    • Monthly equivalent calculations for different frequencies
    • Integration with bills system for unified tracking

Assets & Goals

  • Asset Tracking - Track non-liquid assets (real estate, vehicles, jewelry, collectibles)
    • Value history with snapshots over time
    • Appreciation/depreciation projections with interactive charts
    • Integrated into net worth calculations
  • Debt Payoff Planner - Plan debt repayment using avalanche or snowball strategies
    • Repayment charts with stacked area / individual line toggle
    • Named scenarios with extra payments, lump sums, debt selection, and rate overrides
    • Strategy comparison with side-by-side metrics and recommendation
    • Progress tracking against active scenario (ahead/behind/on track)
    • Dashboard widgets: chart sparkline, progress countdown, days until debt free
  • Savings Goals - Set financial targets with progress tracking and achievement forecasting
    • Link goals to tags for automatic amount calculation from tagged transactions
  • Pension Tracker - Track retirement accounts with growth projections and combined forecasts

Sharing & Collaboration

  • Shared Expenses - Share expenses with roommates, partners, or friends and track who owes whom
    • Settlement tracking with payment history
    • Contact integration with Nextcloud

Reporting & Analysis

  • Net Worth History - Track assets, liabilities, and non-liquid assets over time with interactive charts
    • Daily automatic snapshots with manual recording option
    • Multi-currency conversion to default currency via ECB and CoinGecko rates
    • Status indicators showing last snapshot timing
  • Bills Calendar - Visualize when bills are due throughout the year
  • Year-over-Year Reports - Compare spending across multiple years side-by-side
  • Reports & Charts - Visualize spending patterns, income, and cash flow over time

Security & Data Management

  • Password Protection - Optional secondary password layer for enhanced app security
    • Session management with configurable timeout (15/30/60 minutes)
    • Auto-lock on inactivity with manual lock option
    • Failed attempt protection (5 attempts = 5-minute lockout)
  • Data Export/Import - Full data migration support for moving between Nextcloud instances
  • Factory Reset - Restore app to empty state with one-click data deletion (preserves audit logs)
  • Audit Logging - Complete trail of all financial actions

Requirements

  • Nextcloud 30 - 35
  • PHP 8.1+
  • MySQL/MariaDB, PostgreSQL, or SQLite

Installation

From App Store (Recommended)

  1. Log in to your Nextcloud instance as admin
  2. Go to Apps > Office & text
  3. Search for "Budget"
  4. Click Download and enable

Manual Installation

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install dependencies
composer install --no-dev --optimize-autoloader
npm install
# Build frontend
npm run build

Enable the app:

php occ app:enable budget

Development

Setup Development Environment

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install all dependencies
composer install
npm install
# Build for development
npm run dev
# Watch for changes
npm run watch

Build Commands

CommandDescription
npm run buildProduction build
npm run devDevelopment build with source maps
npm run watchAuto-rebuild on file changes
npm run lintRun ESLint
npm run lint:fixAuto-fix linting issues

Project Structure

budget/
├── appinfo/ # App metadata and routing
├── lib/
│ ├── Controller/ # API endpoints
│ ├── Service/ # Business logic
│ ├── Db/ # Database models and mappers
│ ├── Enum/ # Type definitions
│ └── Migration/ # Database schema versions
├── src/ # Frontend source (ES6+)
│ ├── modules/ # Feature-based modules (17 modules)
│ ├── core/ # Router and infrastructure
│ ├── utils/ # Shared utilities
│ └── config/ # Dashboard widgets configuration
├── js/ # Compiled JavaScript
├── css/ # Compiled styles
├── templates/ # PHP templates
└── tests/ # PHPUnit test suites

Usage

See the full documentation for detailed guides on every feature.

Getting Started

  1. Add Accounts - Navigate to the Accounts section and add your bank accounts
  2. Import Transactions - Use the Import feature to upload your bank statements
  3. Set Up Categories - Create categories that match your spending patterns
  4. Configure Import Rules - Set up rules to automatically categorize future imports
  5. Track Bills - Add recurring bills to monitor upcoming payments
  6. Set Goals - Create savings goals to track progress toward financial targets

Importing Bank Statements

The app supports the following formats:

  • CSV - Most banks provide CSV exports (supports European formats)
  • OFX - Open Financial Exchange format
  • QIF - Quicken Interchange Format

CSV Import Tips

  1. The first row should contain column headers
  2. Common columns: Date, Description, Amount, Balance
  3. Use the column mapping feature to match your bank's format
  4. For European banks with separate income/expense columns, use dual-column amount mapping
  5. The app auto-detects delimiters (comma, semicolon, tab)

Setting Up Import Rules

The advanced rules engine uses a visual query builder for complex patterns:

  1. Go to Rules in the navigation menu
  2. Click Add Rule
  3. Build criteria using the visual query builder:
    • Add conditions (field, match type, pattern)
    • Group conditions with AND/OR operators
    • Use NOT operator for negation
    • Create nested groups for complex logic
  4. Configure actions (category, vendor, notes, etc.)
  5. Set priority and behavior (always, if_empty, append, merge)
  6. Preview to test matches before saving
  7. Run Now to apply to existing transactions

Bills and Transfers

Bills:

  • Add recurring bills with custom frequency patterns
  • Enable auto-pay to automatically mark bills as paid on due date
  • Create future transactions for cash flow planning
  • View annual bills calendar to see when bills are due throughout the year

Transfers:

  • Track recurring transfers between accounts (e.g., monthly savings transfers)
  • Enable auto-pay for automatic execution
  • Set transaction description patterns for import matching

Forecasting

The forecast feature analyzes historical spending to predict future balances:

  1. Select the account(s) to forecast
  2. Choose the historical period to analyze (3, 6, or 12 months)
  3. Select the forecast horizon
  4. Generate the forecast

The forecast considers:

  • Regular income patterns
  • Recurring expenses
  • Seasonal variations
  • Average spending by category

Data Migration

To move your data between Nextcloud instances:

  1. Export - Go to Settings > Data Migration > Export to download all your data
  2. Import - On the new instance, go to Settings > Data Migration > Import and upload the export file

API

The app provides a REST API for all functionality:

EndpointDescription
/api/accountsAccount management
/api/transactionsTransaction CRUD and search
/api/categoriesCategory hierarchy
/api/budget-snapshotsPer-month budget adjustments
/api/bank-syncExternal bank sync (Beta)
/api/admin/settingsAdmin settings (bank sync toggle)
/api/tag-setsTag set management
/api/importBank statement import
/api/import-rulesAdvanced auto-categorization rules
/api/forecastBalance predictions
/api/billsRecurring bill tracking with auto-pay
/api/transfersRecurring transfers between accounts
/api/goalsSavings goal management
/api/assetsNon-liquid asset tracking
/api/pensionsPension account tracking
/api/debtsDebt payoff planning
/api/debt-scenariosDebt scenario management
/api/reportsFinancial reports
/api/migrationData export/import
/api/authPassword protection

Troubleshooting

Import fails with "Invalid format"

  • Ensure your CSV has headers in the first row
  • Check that date format matches your locale settings
  • Verify the file encoding is UTF-8
  • For European formats, the app will auto-detect delimiters and number formats

Transactions not categorizing automatically

  • Check that import rules are active
  • Use the Preview feature to test rule matching before saving
  • Verify rule patterns match transaction descriptions
  • Review rule priority order (higher priority rules execute first)

Forecast seems inaccurate

  • Ensure you have at least 3 months of transaction history
  • Check for unusual one-time transactions that might skew averages
  • Verify all regular transactions are properly categorized

Categories page is blank

  • Verify categories were imported successfully via Settings > Data Migration
  • Check browser console for JavaScript errors
  • Try refreshing browser cache (Ctrl+F5 / Cmd+Shift+R)

Help Translate

Nextcloud Budget is fully translatable with 2,177+ strings. We'd love your help making it available in more languages!

Translate on Weblate — translate directly in your browser, no coding required. Just sign in, pick your language, and start. Your translations are automatically merged into the app.

Translation status

Currently available in: English, German, Spanish, French, Russian, Portuguese (Brazil), and Czech.

Special thanks to our translators: @SGiersch (German), @T0mFi and Pavel Borecki (Czech).

Note: Strings containing {placeholders} (e.g. {amount}, {bill}) must keep the placeholder names exactly as-is — only translate the surrounding text.

Alternative: translate via pull request

If you prefer working with .po files directly:

  1. Copy budget/translationfiles/templates/budget.pot to budget/translationfiles/<lang>/budget.po
  2. Translate the strings using Poedit or any .po editor
  3. Submit a pull request

See the translation guide for detailed instructions.

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/my-feature)
  3. Make your changes
  4. Run tests (make test) and linting (make lint)
  5. Submit a pull request

Acknowledgements

This app is shaped by its community. Thanks to everyone who reports bugs, suggests features, and contributes translations:

  • @SGiersch — Top contributor: dozens of bug reports, feature discussions, and German translation
  • @TerjeTM — Thorough testing and detailed bug reports that led to major improvements in the bills system and data repair tools
  • @JaviAZ — Code contributions and bug reports around category spending and transfers
  • @H2Oufoe — Extensive bug reporting and testing across multiple releases
  • @st33vil — Identified the pagination balance calculation bug
  • @T0mFi, Pavel Borecki — Czech translation
  • @raduberbece, @MrTCAJ, @mschur — Bug reports and feedback

License

This project is licensed under the AGPL-3.0-or-later license.

Support

About

Budget application for Nextcloud cloud.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { // Force GitHub README to respect dark mode (function() { var style = document.createElement('style'); style.textContent = ' .markdown-body { color-scheme: dark light; } .markdown-body pre { background: #161b22 !important; } .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; } .markdown-body table th, .markdown-body table td { border-color: #30363d !important; } .markdown-body img { background: #0d1117; } .markdown-body blockquote { border-left-color: #8b949e; } .markdown-body hr { border-color: #30363d; } '; document.head.appendChild(style); })(); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' GitHub - TheUnderdev/Budget: Budget application for Nextcloud cloud. · GitHub
Skip to content

Repository files navigation

ko-fi

Nextcloud Budget

⚠️Beta: This app is under active development. While stable, please backup your data regularly and report any issues you encounter.

A comprehensive financial management app for Nextcloud. Track spending habits, manage multiple accounts, and forecast future balances through intelligent analysis of your financial history.

Dashboard Screenshot

What's New in v2.27

  • Quick Add Standalone Page - Minimal mobile page for adding transactions without exposing balances. Bookmark it or add to your home screen (#235)
  • Shared Account Support - Reports, forecasts, net worth, and dashboard now include data from shared accounts. Shared users can delete, update, and split transactions (#215, #245)
  • Dismissed Imports - Deleted bank sync transactions won't be re-imported. Force re-sync button available when needed (#230)
  • Transaction Type Rule Criteria - Rules can now filter by Income or Expense, with Auto-Link as Transfer action (#229)
  • Semi-Monthly Frequency - Twice-per-month option for bills, income, and transfers (Discussion #239)
  • System Info Diagnostics - Settings panel with data stats, server info, and logs for troubleshooting (#228)
  • CI Pipeline - Automated linting, tests, and migration name validation on every push

See the full changelog for details.

Documentation

Full user documentation is available in the docs/ directory:

Popular topics:

Features

Dashboard & Visualization

  • Customizable Dashboard - Gridstack.js-powered drag-and-drop with lock/unlock editing, column picker, and per-tile sizing (S/M/L)
  • Duplicate Tiles - Add multiple instances of chart and transaction tiles, each with independent account/period settings
  • 28+ Dashboard Tiles - Hero metrics, spending insights, forecasting, budget tracking, and more
  • Interactive Charts - Cash flow forecasts, year-over-year comparisons, net worth history with Chart.js
  • Auto-Updating Tiles - Dashboard refreshes automatically when transactions or budgets change

Account & Transaction Management

  • Multi-Account Management - Track bank accounts, credit cards, cash, and cryptocurrency across 45+ currencies
  • Transaction Tracking - Add, edit, categorize, and search transactions with advanced filtering
  • Bulk Operations - Delete, reconcile, or edit multiple transactions at once
  • Configurable Table Columns - Show/hide columns to customize your transaction view
  • Split Transactions - Allocate single transactions across multiple categories
  • Transaction Matching - Automatic transfer detection and linking between accounts
  • Transfer Creation - Create linked transfer transactions directly from transaction form
  • Pending Transactions - Future-dated transactions shown with visual indicators and filterable status (All / Cleared / Pending)

Import & Automation

  • Bank Sync (Beta) - Connect external bank accounts for automatic transaction imports
    • GoCardless provider for UK/Europe banks with guided setup wizard and bank selection
    • SimpleFIN provider for US banks
    • Daily background sync with duplicate detection
    • Re-authorization flow when bank consent expires (PSD2 90-day limit)
    • Sync all connections at once with aggregated results
    • Encrypted credential storage
    • Admin-enabled with experimental feature warnings
  • Smart Import - Import bank statements from CSV, OFX, and QIF formats
    • Auto-detection of CSV delimiters (comma, semicolon, tab)
    • Dual-column amount mapping for separate income/expense columns
    • European number format support (1.234,56)
    • Automatic vendor matching and duplicate detection
  • Advanced Rules Engine - Powerful auto-categorization with visual query builder
    • Complex boolean expressions with AND/OR/NOT operators
    • Nested criteria groups with unlimited depth
    • Multiple actions: category, vendor, notes, tags, account, type, reference
    • Preview matches before saving, run rules on existing transactions anytime
    • Priority-based execution with behavior settings (always, if_empty, append, merge)
  • Hierarchical Categories - Organize spending with nested categories and drag-and-drop reordering
  • Tag Sets - Multi-dimensional transaction categorization with custom tag sets per category

Budgeting & Planning

  • Budget Tracking - Set spending limits by category with alerts when approaching or exceeding budgets
    • Per-month budget adjustments — change budgets from any month forward without affecting historical data
    • Dynamic period switching (weekly, monthly, quarterly, yearly)
    • Automatic pro-rating when changing budget periods
    • Parent category aggregation — parent budgets show combined totals with children
    • Real-time progress tracking with visual indicators
  • Balance Forecasting - Predict future balances using trend analysis and scenario modeling
  • Recurring Bills - Detect and track recurring payments
    • Auto-pay option to automatically mark bills as paid on due date
    • Create future transactions for cash flow planning
    • Bill reminders via Nextcloud notifications
    • Custom frequency patterns (select specific months for irregular bills)
  • Bills Calendar - Annual overview showing which months bills are due
    • Interactive heatmap visualization
    • Monthly totals with bar chart
    • Filter by status and include/exclude transfers
  • Recurring Income - Track expected income sources (salary, dividends, etc.) with receipt tracking
  • Recurring Transfers - Track and automate transfers between accounts
    • Monthly equivalent calculations for different frequencies
    • Integration with bills system for unified tracking

Assets & Goals

  • Asset Tracking - Track non-liquid assets (real estate, vehicles, jewelry, collectibles)
    • Value history with snapshots over time
    • Appreciation/depreciation projections with interactive charts
    • Integrated into net worth calculations
  • Debt Payoff Planner - Plan debt repayment using avalanche or snowball strategies
    • Repayment charts with stacked area / individual line toggle
    • Named scenarios with extra payments, lump sums, debt selection, and rate overrides
    • Strategy comparison with side-by-side metrics and recommendation
    • Progress tracking against active scenario (ahead/behind/on track)
    • Dashboard widgets: chart sparkline, progress countdown, days until debt free
  • Savings Goals - Set financial targets with progress tracking and achievement forecasting
    • Link goals to tags for automatic amount calculation from tagged transactions
  • Pension Tracker - Track retirement accounts with growth projections and combined forecasts

Sharing & Collaboration

  • Shared Expenses - Share expenses with roommates, partners, or friends and track who owes whom
    • Settlement tracking with payment history
    • Contact integration with Nextcloud

Reporting & Analysis

  • Net Worth History - Track assets, liabilities, and non-liquid assets over time with interactive charts
    • Daily automatic snapshots with manual recording option
    • Multi-currency conversion to default currency via ECB and CoinGecko rates
    • Status indicators showing last snapshot timing
  • Bills Calendar - Visualize when bills are due throughout the year
  • Year-over-Year Reports - Compare spending across multiple years side-by-side
  • Reports & Charts - Visualize spending patterns, income, and cash flow over time

Security & Data Management

  • Password Protection - Optional secondary password layer for enhanced app security
    • Session management with configurable timeout (15/30/60 minutes)
    • Auto-lock on inactivity with manual lock option
    • Failed attempt protection (5 attempts = 5-minute lockout)
  • Data Export/Import - Full data migration support for moving between Nextcloud instances
  • Factory Reset - Restore app to empty state with one-click data deletion (preserves audit logs)
  • Audit Logging - Complete trail of all financial actions

Requirements

  • Nextcloud 30 - 35
  • PHP 8.1+
  • MySQL/MariaDB, PostgreSQL, or SQLite

Installation

From App Store (Recommended)

  1. Log in to your Nextcloud instance as admin
  2. Go to Apps > Office & text
  3. Search for "Budget"
  4. Click Download and enable

Manual Installation

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install dependencies
composer install --no-dev --optimize-autoloader
npm install
# Build frontend
npm run build

Enable the app:

php occ app:enable budget

Development

Setup Development Environment

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install all dependencies
composer install
npm install
# Build for development
npm run dev
# Watch for changes
npm run watch

Build Commands

CommandDescription
npm run buildProduction build
npm run devDevelopment build with source maps
npm run watchAuto-rebuild on file changes
npm run lintRun ESLint
npm run lint:fixAuto-fix linting issues

Project Structure

budget/
├── appinfo/ # App metadata and routing
├── lib/
│ ├── Controller/ # API endpoints
│ ├── Service/ # Business logic
│ ├── Db/ # Database models and mappers
│ ├── Enum/ # Type definitions
│ └── Migration/ # Database schema versions
├── src/ # Frontend source (ES6+)
│ ├── modules/ # Feature-based modules (17 modules)
│ ├── core/ # Router and infrastructure
│ ├── utils/ # Shared utilities
│ └── config/ # Dashboard widgets configuration
├── js/ # Compiled JavaScript
├── css/ # Compiled styles
├── templates/ # PHP templates
└── tests/ # PHPUnit test suites

Usage

See the full documentation for detailed guides on every feature.

Getting Started

  1. Add Accounts - Navigate to the Accounts section and add your bank accounts
  2. Import Transactions - Use the Import feature to upload your bank statements
  3. Set Up Categories - Create categories that match your spending patterns
  4. Configure Import Rules - Set up rules to automatically categorize future imports
  5. Track Bills - Add recurring bills to monitor upcoming payments
  6. Set Goals - Create savings goals to track progress toward financial targets

Importing Bank Statements

The app supports the following formats:

  • CSV - Most banks provide CSV exports (supports European formats)
  • OFX - Open Financial Exchange format
  • QIF - Quicken Interchange Format

CSV Import Tips

  1. The first row should contain column headers
  2. Common columns: Date, Description, Amount, Balance
  3. Use the column mapping feature to match your bank's format
  4. For European banks with separate income/expense columns, use dual-column amount mapping
  5. The app auto-detects delimiters (comma, semicolon, tab)

Setting Up Import Rules

The advanced rules engine uses a visual query builder for complex patterns:

  1. Go to Rules in the navigation menu
  2. Click Add Rule
  3. Build criteria using the visual query builder:
    • Add conditions (field, match type, pattern)
    • Group conditions with AND/OR operators
    • Use NOT operator for negation
    • Create nested groups for complex logic
  4. Configure actions (category, vendor, notes, etc.)
  5. Set priority and behavior (always, if_empty, append, merge)
  6. Preview to test matches before saving
  7. Run Now to apply to existing transactions

Bills and Transfers

Bills:

  • Add recurring bills with custom frequency patterns
  • Enable auto-pay to automatically mark bills as paid on due date
  • Create future transactions for cash flow planning
  • View annual bills calendar to see when bills are due throughout the year

Transfers:

  • Track recurring transfers between accounts (e.g., monthly savings transfers)
  • Enable auto-pay for automatic execution
  • Set transaction description patterns for import matching

Forecasting

The forecast feature analyzes historical spending to predict future balances:

  1. Select the account(s) to forecast
  2. Choose the historical period to analyze (3, 6, or 12 months)
  3. Select the forecast horizon
  4. Generate the forecast

The forecast considers:

  • Regular income patterns
  • Recurring expenses
  • Seasonal variations
  • Average spending by category

Data Migration

To move your data between Nextcloud instances:

  1. Export - Go to Settings > Data Migration > Export to download all your data
  2. Import - On the new instance, go to Settings > Data Migration > Import and upload the export file

API

The app provides a REST API for all functionality:

EndpointDescription
/api/accountsAccount management
/api/transactionsTransaction CRUD and search
/api/categoriesCategory hierarchy
/api/budget-snapshotsPer-month budget adjustments
/api/bank-syncExternal bank sync (Beta)
/api/admin/settingsAdmin settings (bank sync toggle)
/api/tag-setsTag set management
/api/importBank statement import
/api/import-rulesAdvanced auto-categorization rules
/api/forecastBalance predictions
/api/billsRecurring bill tracking with auto-pay
/api/transfersRecurring transfers between accounts
/api/goalsSavings goal management
/api/assetsNon-liquid asset tracking
/api/pensionsPension account tracking
/api/debtsDebt payoff planning
/api/debt-scenariosDebt scenario management
/api/reportsFinancial reports
/api/migrationData export/import
/api/authPassword protection

Troubleshooting

Import fails with "Invalid format"

  • Ensure your CSV has headers in the first row
  • Check that date format matches your locale settings
  • Verify the file encoding is UTF-8
  • For European formats, the app will auto-detect delimiters and number formats

Transactions not categorizing automatically

  • Check that import rules are active
  • Use the Preview feature to test rule matching before saving
  • Verify rule patterns match transaction descriptions
  • Review rule priority order (higher priority rules execute first)

Forecast seems inaccurate

  • Ensure you have at least 3 months of transaction history
  • Check for unusual one-time transactions that might skew averages
  • Verify all regular transactions are properly categorized

Categories page is blank

  • Verify categories were imported successfully via Settings > Data Migration
  • Check browser console for JavaScript errors
  • Try refreshing browser cache (Ctrl+F5 / Cmd+Shift+R)

Help Translate

Nextcloud Budget is fully translatable with 2,177+ strings. We'd love your help making it available in more languages!

Translate on Weblate — translate directly in your browser, no coding required. Just sign in, pick your language, and start. Your translations are automatically merged into the app.

Translation status

Currently available in: English, German, Spanish, French, Russian, Portuguese (Brazil), and Czech.

Special thanks to our translators: @SGiersch (German), @T0mFi and Pavel Borecki (Czech).

Note: Strings containing {placeholders} (e.g. {amount}, {bill}) must keep the placeholder names exactly as-is — only translate the surrounding text.

Alternative: translate via pull request

If you prefer working with .po files directly:

  1. Copy budget/translationfiles/templates/budget.pot to budget/translationfiles/<lang>/budget.po
  2. Translate the strings using Poedit or any .po editor
  3. Submit a pull request

See the translation guide for detailed instructions.

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/my-feature)
  3. Make your changes
  4. Run tests (make test) and linting (make lint)
  5. Submit a pull request

Acknowledgements

This app is shaped by its community. Thanks to everyone who reports bugs, suggests features, and contributes translations:

  • @SGiersch — Top contributor: dozens of bug reports, feature discussions, and German translation
  • @TerjeTM — Thorough testing and detailed bug reports that led to major improvements in the bills system and data repair tools
  • @JaviAZ — Code contributions and bug reports around category spending and transfers
  • @H2Oufoe — Extensive bug reporting and testing across multiple releases
  • @st33vil — Identified the pagination balance calculation bug
  • @T0mFi, Pavel Borecki — Czech translation
  • @raduberbece, @MrTCAJ, @mschur — Bug reports and feedback

License

This project is licensed under the AGPL-3.0-or-later license.

Support

About

Budget application for Nextcloud cloud.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { // Highlight search terms from Google/DuckDuckGo/Bing referrer (function() { var ref = document.referrer; var terms = []; if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) { var url = new URL(ref); var q = url.searchParams.get('q') || url.searchParams.get('p'); if (q) { terms = q.split(/\s+/).filter(function(t) { return t.length > 2; }); } } if (terms.length === 0) return; var style = document.createElement('style'); style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }'; document.head.appendChild(style); function highlight(node) { if (node.nodeType === 3) { // text node var text = node.textContent; var found = false; terms.forEach(function(term) { var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\]\\]/g, '\\') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' GitHub - TheUnderdev/Budget: Budget application for Nextcloud cloud. · GitHub
Skip to content

Repository files navigation

ko-fi

Nextcloud Budget

⚠️Beta: This app is under active development. While stable, please backup your data regularly and report any issues you encounter.

A comprehensive financial management app for Nextcloud. Track spending habits, manage multiple accounts, and forecast future balances through intelligent analysis of your financial history.

Dashboard Screenshot

What's New in v2.27

  • Quick Add Standalone Page - Minimal mobile page for adding transactions without exposing balances. Bookmark it or add to your home screen (#235)
  • Shared Account Support - Reports, forecasts, net worth, and dashboard now include data from shared accounts. Shared users can delete, update, and split transactions (#215, #245)
  • Dismissed Imports - Deleted bank sync transactions won't be re-imported. Force re-sync button available when needed (#230)
  • Transaction Type Rule Criteria - Rules can now filter by Income or Expense, with Auto-Link as Transfer action (#229)
  • Semi-Monthly Frequency - Twice-per-month option for bills, income, and transfers (Discussion #239)
  • System Info Diagnostics - Settings panel with data stats, server info, and logs for troubleshooting (#228)
  • CI Pipeline - Automated linting, tests, and migration name validation on every push

See the full changelog for details.

Documentation

Full user documentation is available in the docs/ directory:

Popular topics:

Features

Dashboard & Visualization

  • Customizable Dashboard - Gridstack.js-powered drag-and-drop with lock/unlock editing, column picker, and per-tile sizing (S/M/L)
  • Duplicate Tiles - Add multiple instances of chart and transaction tiles, each with independent account/period settings
  • 28+ Dashboard Tiles - Hero metrics, spending insights, forecasting, budget tracking, and more
  • Interactive Charts - Cash flow forecasts, year-over-year comparisons, net worth history with Chart.js
  • Auto-Updating Tiles - Dashboard refreshes automatically when transactions or budgets change

Account & Transaction Management

  • Multi-Account Management - Track bank accounts, credit cards, cash, and cryptocurrency across 45+ currencies
  • Transaction Tracking - Add, edit, categorize, and search transactions with advanced filtering
  • Bulk Operations - Delete, reconcile, or edit multiple transactions at once
  • Configurable Table Columns - Show/hide columns to customize your transaction view
  • Split Transactions - Allocate single transactions across multiple categories
  • Transaction Matching - Automatic transfer detection and linking between accounts
  • Transfer Creation - Create linked transfer transactions directly from transaction form
  • Pending Transactions - Future-dated transactions shown with visual indicators and filterable status (All / Cleared / Pending)

Import & Automation

  • Bank Sync (Beta) - Connect external bank accounts for automatic transaction imports
    • GoCardless provider for UK/Europe banks with guided setup wizard and bank selection
    • SimpleFIN provider for US banks
    • Daily background sync with duplicate detection
    • Re-authorization flow when bank consent expires (PSD2 90-day limit)
    • Sync all connections at once with aggregated results
    • Encrypted credential storage
    • Admin-enabled with experimental feature warnings
  • Smart Import - Import bank statements from CSV, OFX, and QIF formats
    • Auto-detection of CSV delimiters (comma, semicolon, tab)
    • Dual-column amount mapping for separate income/expense columns
    • European number format support (1.234,56)
    • Automatic vendor matching and duplicate detection
  • Advanced Rules Engine - Powerful auto-categorization with visual query builder
    • Complex boolean expressions with AND/OR/NOT operators
    • Nested criteria groups with unlimited depth
    • Multiple actions: category, vendor, notes, tags, account, type, reference
    • Preview matches before saving, run rules on existing transactions anytime
    • Priority-based execution with behavior settings (always, if_empty, append, merge)
  • Hierarchical Categories - Organize spending with nested categories and drag-and-drop reordering
  • Tag Sets - Multi-dimensional transaction categorization with custom tag sets per category

Budgeting & Planning

  • Budget Tracking - Set spending limits by category with alerts when approaching or exceeding budgets
    • Per-month budget adjustments — change budgets from any month forward without affecting historical data
    • Dynamic period switching (weekly, monthly, quarterly, yearly)
    • Automatic pro-rating when changing budget periods
    • Parent category aggregation — parent budgets show combined totals with children
    • Real-time progress tracking with visual indicators
  • Balance Forecasting - Predict future balances using trend analysis and scenario modeling
  • Recurring Bills - Detect and track recurring payments
    • Auto-pay option to automatically mark bills as paid on due date
    • Create future transactions for cash flow planning
    • Bill reminders via Nextcloud notifications
    • Custom frequency patterns (select specific months for irregular bills)
  • Bills Calendar - Annual overview showing which months bills are due
    • Interactive heatmap visualization
    • Monthly totals with bar chart
    • Filter by status and include/exclude transfers
  • Recurring Income - Track expected income sources (salary, dividends, etc.) with receipt tracking
  • Recurring Transfers - Track and automate transfers between accounts
    • Monthly equivalent calculations for different frequencies
    • Integration with bills system for unified tracking

Assets & Goals

  • Asset Tracking - Track non-liquid assets (real estate, vehicles, jewelry, collectibles)
    • Value history with snapshots over time
    • Appreciation/depreciation projections with interactive charts
    • Integrated into net worth calculations
  • Debt Payoff Planner - Plan debt repayment using avalanche or snowball strategies
    • Repayment charts with stacked area / individual line toggle
    • Named scenarios with extra payments, lump sums, debt selection, and rate overrides
    • Strategy comparison with side-by-side metrics and recommendation
    • Progress tracking against active scenario (ahead/behind/on track)
    • Dashboard widgets: chart sparkline, progress countdown, days until debt free
  • Savings Goals - Set financial targets with progress tracking and achievement forecasting
    • Link goals to tags for automatic amount calculation from tagged transactions
  • Pension Tracker - Track retirement accounts with growth projections and combined forecasts

Sharing & Collaboration

  • Shared Expenses - Share expenses with roommates, partners, or friends and track who owes whom
    • Settlement tracking with payment history
    • Contact integration with Nextcloud

Reporting & Analysis

  • Net Worth History - Track assets, liabilities, and non-liquid assets over time with interactive charts
    • Daily automatic snapshots with manual recording option
    • Multi-currency conversion to default currency via ECB and CoinGecko rates
    • Status indicators showing last snapshot timing
  • Bills Calendar - Visualize when bills are due throughout the year
  • Year-over-Year Reports - Compare spending across multiple years side-by-side
  • Reports & Charts - Visualize spending patterns, income, and cash flow over time

Security & Data Management

  • Password Protection - Optional secondary password layer for enhanced app security
    • Session management with configurable timeout (15/30/60 minutes)
    • Auto-lock on inactivity with manual lock option
    • Failed attempt protection (5 attempts = 5-minute lockout)
  • Data Export/Import - Full data migration support for moving between Nextcloud instances
  • Factory Reset - Restore app to empty state with one-click data deletion (preserves audit logs)
  • Audit Logging - Complete trail of all financial actions

Requirements

  • Nextcloud 30 - 35
  • PHP 8.1+
  • MySQL/MariaDB, PostgreSQL, or SQLite

Installation

From App Store (Recommended)

  1. Log in to your Nextcloud instance as admin
  2. Go to Apps > Office & text
  3. Search for "Budget"
  4. Click Download and enable

Manual Installation

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install dependencies
composer install --no-dev --optimize-autoloader
npm install
# Build frontend
npm run build

Enable the app:

php occ app:enable budget

Development

Setup Development Environment

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install all dependencies
composer install
npm install
# Build for development
npm run dev
# Watch for changes
npm run watch

Build Commands

CommandDescription
npm run buildProduction build
npm run devDevelopment build with source maps
npm run watchAuto-rebuild on file changes
npm run lintRun ESLint
npm run lint:fixAuto-fix linting issues

Project Structure

budget/
├── appinfo/ # App metadata and routing
├── lib/
│ ├── Controller/ # API endpoints
│ ├── Service/ # Business logic
│ ├── Db/ # Database models and mappers
│ ├── Enum/ # Type definitions
│ └── Migration/ # Database schema versions
├── src/ # Frontend source (ES6+)
│ ├── modules/ # Feature-based modules (17 modules)
│ ├── core/ # Router and infrastructure
│ ├── utils/ # Shared utilities
│ └── config/ # Dashboard widgets configuration
├── js/ # Compiled JavaScript
├── css/ # Compiled styles
├── templates/ # PHP templates
└── tests/ # PHPUnit test suites

Usage

See the full documentation for detailed guides on every feature.

Getting Started

  1. Add Accounts - Navigate to the Accounts section and add your bank accounts
  2. Import Transactions - Use the Import feature to upload your bank statements
  3. Set Up Categories - Create categories that match your spending patterns
  4. Configure Import Rules - Set up rules to automatically categorize future imports
  5. Track Bills - Add recurring bills to monitor upcoming payments
  6. Set Goals - Create savings goals to track progress toward financial targets

Importing Bank Statements

The app supports the following formats:

  • CSV - Most banks provide CSV exports (supports European formats)
  • OFX - Open Financial Exchange format
  • QIF - Quicken Interchange Format

CSV Import Tips

  1. The first row should contain column headers
  2. Common columns: Date, Description, Amount, Balance
  3. Use the column mapping feature to match your bank's format
  4. For European banks with separate income/expense columns, use dual-column amount mapping
  5. The app auto-detects delimiters (comma, semicolon, tab)

Setting Up Import Rules

The advanced rules engine uses a visual query builder for complex patterns:

  1. Go to Rules in the navigation menu
  2. Click Add Rule
  3. Build criteria using the visual query builder:
    • Add conditions (field, match type, pattern)
    • Group conditions with AND/OR operators
    • Use NOT operator for negation
    • Create nested groups for complex logic
  4. Configure actions (category, vendor, notes, etc.)
  5. Set priority and behavior (always, if_empty, append, merge)
  6. Preview to test matches before saving
  7. Run Now to apply to existing transactions

Bills and Transfers

Bills:

  • Add recurring bills with custom frequency patterns
  • Enable auto-pay to automatically mark bills as paid on due date
  • Create future transactions for cash flow planning
  • View annual bills calendar to see when bills are due throughout the year

Transfers:

  • Track recurring transfers between accounts (e.g., monthly savings transfers)
  • Enable auto-pay for automatic execution
  • Set transaction description patterns for import matching

Forecasting

The forecast feature analyzes historical spending to predict future balances:

  1. Select the account(s) to forecast
  2. Choose the historical period to analyze (3, 6, or 12 months)
  3. Select the forecast horizon
  4. Generate the forecast

The forecast considers:

  • Regular income patterns
  • Recurring expenses
  • Seasonal variations
  • Average spending by category

Data Migration

To move your data between Nextcloud instances:

  1. Export - Go to Settings > Data Migration > Export to download all your data
  2. Import - On the new instance, go to Settings > Data Migration > Import and upload the export file

API

The app provides a REST API for all functionality:

EndpointDescription
/api/accountsAccount management
/api/transactionsTransaction CRUD and search
/api/categoriesCategory hierarchy
/api/budget-snapshotsPer-month budget adjustments
/api/bank-syncExternal bank sync (Beta)
/api/admin/settingsAdmin settings (bank sync toggle)
/api/tag-setsTag set management
/api/importBank statement import
/api/import-rulesAdvanced auto-categorization rules
/api/forecastBalance predictions
/api/billsRecurring bill tracking with auto-pay
/api/transfersRecurring transfers between accounts
/api/goalsSavings goal management
/api/assetsNon-liquid asset tracking
/api/pensionsPension account tracking
/api/debtsDebt payoff planning
/api/debt-scenariosDebt scenario management
/api/reportsFinancial reports
/api/migrationData export/import
/api/authPassword protection

Troubleshooting

Import fails with "Invalid format"

  • Ensure your CSV has headers in the first row
  • Check that date format matches your locale settings
  • Verify the file encoding is UTF-8
  • For European formats, the app will auto-detect delimiters and number formats

Transactions not categorizing automatically

  • Check that import rules are active
  • Use the Preview feature to test rule matching before saving
  • Verify rule patterns match transaction descriptions
  • Review rule priority order (higher priority rules execute first)

Forecast seems inaccurate

  • Ensure you have at least 3 months of transaction history
  • Check for unusual one-time transactions that might skew averages
  • Verify all regular transactions are properly categorized

Categories page is blank

  • Verify categories were imported successfully via Settings > Data Migration
  • Check browser console for JavaScript errors
  • Try refreshing browser cache (Ctrl+F5 / Cmd+Shift+R)

Help Translate

Nextcloud Budget is fully translatable with 2,177+ strings. We'd love your help making it available in more languages!

Translate on Weblate — translate directly in your browser, no coding required. Just sign in, pick your language, and start. Your translations are automatically merged into the app.

Translation status

Currently available in: English, German, Spanish, French, Russian, Portuguese (Brazil), and Czech.

Special thanks to our translators: @SGiersch (German), @T0mFi and Pavel Borecki (Czech).

Note: Strings containing {placeholders} (e.g. {amount}, {bill}) must keep the placeholder names exactly as-is — only translate the surrounding text.

Alternative: translate via pull request

If you prefer working with .po files directly:

  1. Copy budget/translationfiles/templates/budget.pot to budget/translationfiles/<lang>/budget.po
  2. Translate the strings using Poedit or any .po editor
  3. Submit a pull request

See the translation guide for detailed instructions.

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/my-feature)
  3. Make your changes
  4. Run tests (make test) and linting (make lint)
  5. Submit a pull request

Acknowledgements

This app is shaped by its community. Thanks to everyone who reports bugs, suggests features, and contributes translations:

  • @SGiersch — Top contributor: dozens of bug reports, feature discussions, and German translation
  • @TerjeTM — Thorough testing and detailed bug reports that led to major improvements in the bills system and data repair tools
  • @JaviAZ — Code contributions and bug reports around category spending and transfers
  • @H2Oufoe — Extensive bug reporting and testing across multiple releases
  • @st33vil — Identified the pagination balance calculation bug
  • @T0mFi, Pavel Borecki — Czech translation
  • @raduberbece, @MrTCAJ, @mschur — Bug reports and feedback

License

This project is licensed under the AGPL-3.0-or-later license.

Support

About

Budget application for Nextcloud cloud.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ' GitHub - TheUnderdev/Budget: Budget application for Nextcloud cloud. · GitHub
Skip to content

Repository files navigation

ko-fi

Nextcloud Budget

⚠️Beta: This app is under active development. While stable, please backup your data regularly and report any issues you encounter.

A comprehensive financial management app for Nextcloud. Track spending habits, manage multiple accounts, and forecast future balances through intelligent analysis of your financial history.

Dashboard Screenshot

What's New in v2.27

  • Quick Add Standalone Page - Minimal mobile page for adding transactions without exposing balances. Bookmark it or add to your home screen (#235)
  • Shared Account Support - Reports, forecasts, net worth, and dashboard now include data from shared accounts. Shared users can delete, update, and split transactions (#215, #245)
  • Dismissed Imports - Deleted bank sync transactions won't be re-imported. Force re-sync button available when needed (#230)
  • Transaction Type Rule Criteria - Rules can now filter by Income or Expense, with Auto-Link as Transfer action (#229)
  • Semi-Monthly Frequency - Twice-per-month option for bills, income, and transfers (Discussion #239)
  • System Info Diagnostics - Settings panel with data stats, server info, and logs for troubleshooting (#228)
  • CI Pipeline - Automated linting, tests, and migration name validation on every push

See the full changelog for details.

Documentation

Full user documentation is available in the docs/ directory:

Popular topics:

Features

Dashboard & Visualization

  • Customizable Dashboard - Gridstack.js-powered drag-and-drop with lock/unlock editing, column picker, and per-tile sizing (S/M/L)
  • Duplicate Tiles - Add multiple instances of chart and transaction tiles, each with independent account/period settings
  • 28+ Dashboard Tiles - Hero metrics, spending insights, forecasting, budget tracking, and more
  • Interactive Charts - Cash flow forecasts, year-over-year comparisons, net worth history with Chart.js
  • Auto-Updating Tiles - Dashboard refreshes automatically when transactions or budgets change

Account & Transaction Management

  • Multi-Account Management - Track bank accounts, credit cards, cash, and cryptocurrency across 45+ currencies
  • Transaction Tracking - Add, edit, categorize, and search transactions with advanced filtering
  • Bulk Operations - Delete, reconcile, or edit multiple transactions at once
  • Configurable Table Columns - Show/hide columns to customize your transaction view
  • Split Transactions - Allocate single transactions across multiple categories
  • Transaction Matching - Automatic transfer detection and linking between accounts
  • Transfer Creation - Create linked transfer transactions directly from transaction form
  • Pending Transactions - Future-dated transactions shown with visual indicators and filterable status (All / Cleared / Pending)

Import & Automation

  • Bank Sync (Beta) - Connect external bank accounts for automatic transaction imports
    • GoCardless provider for UK/Europe banks with guided setup wizard and bank selection
    • SimpleFIN provider for US banks
    • Daily background sync with duplicate detection
    • Re-authorization flow when bank consent expires (PSD2 90-day limit)
    • Sync all connections at once with aggregated results
    • Encrypted credential storage
    • Admin-enabled with experimental feature warnings
  • Smart Import - Import bank statements from CSV, OFX, and QIF formats
    • Auto-detection of CSV delimiters (comma, semicolon, tab)
    • Dual-column amount mapping for separate income/expense columns
    • European number format support (1.234,56)
    • Automatic vendor matching and duplicate detection
  • Advanced Rules Engine - Powerful auto-categorization with visual query builder
    • Complex boolean expressions with AND/OR/NOT operators
    • Nested criteria groups with unlimited depth
    • Multiple actions: category, vendor, notes, tags, account, type, reference
    • Preview matches before saving, run rules on existing transactions anytime
    • Priority-based execution with behavior settings (always, if_empty, append, merge)
  • Hierarchical Categories - Organize spending with nested categories and drag-and-drop reordering
  • Tag Sets - Multi-dimensional transaction categorization with custom tag sets per category

Budgeting & Planning

  • Budget Tracking - Set spending limits by category with alerts when approaching or exceeding budgets
    • Per-month budget adjustments — change budgets from any month forward without affecting historical data
    • Dynamic period switching (weekly, monthly, quarterly, yearly)
    • Automatic pro-rating when changing budget periods
    • Parent category aggregation — parent budgets show combined totals with children
    • Real-time progress tracking with visual indicators
  • Balance Forecasting - Predict future balances using trend analysis and scenario modeling
  • Recurring Bills - Detect and track recurring payments
    • Auto-pay option to automatically mark bills as paid on due date
    • Create future transactions for cash flow planning
    • Bill reminders via Nextcloud notifications
    • Custom frequency patterns (select specific months for irregular bills)
  • Bills Calendar - Annual overview showing which months bills are due
    • Interactive heatmap visualization
    • Monthly totals with bar chart
    • Filter by status and include/exclude transfers
  • Recurring Income - Track expected income sources (salary, dividends, etc.) with receipt tracking
  • Recurring Transfers - Track and automate transfers between accounts
    • Monthly equivalent calculations for different frequencies
    • Integration with bills system for unified tracking

Assets & Goals

  • Asset Tracking - Track non-liquid assets (real estate, vehicles, jewelry, collectibles)
    • Value history with snapshots over time
    • Appreciation/depreciation projections with interactive charts
    • Integrated into net worth calculations
  • Debt Payoff Planner - Plan debt repayment using avalanche or snowball strategies
    • Repayment charts with stacked area / individual line toggle
    • Named scenarios with extra payments, lump sums, debt selection, and rate overrides
    • Strategy comparison with side-by-side metrics and recommendation
    • Progress tracking against active scenario (ahead/behind/on track)
    • Dashboard widgets: chart sparkline, progress countdown, days until debt free
  • Savings Goals - Set financial targets with progress tracking and achievement forecasting
    • Link goals to tags for automatic amount calculation from tagged transactions
  • Pension Tracker - Track retirement accounts with growth projections and combined forecasts

Sharing & Collaboration

  • Shared Expenses - Share expenses with roommates, partners, or friends and track who owes whom
    • Settlement tracking with payment history
    • Contact integration with Nextcloud

Reporting & Analysis

  • Net Worth History - Track assets, liabilities, and non-liquid assets over time with interactive charts
    • Daily automatic snapshots with manual recording option
    • Multi-currency conversion to default currency via ECB and CoinGecko rates
    • Status indicators showing last snapshot timing
  • Bills Calendar - Visualize when bills are due throughout the year
  • Year-over-Year Reports - Compare spending across multiple years side-by-side
  • Reports & Charts - Visualize spending patterns, income, and cash flow over time

Security & Data Management

  • Password Protection - Optional secondary password layer for enhanced app security
    • Session management with configurable timeout (15/30/60 minutes)
    • Auto-lock on inactivity with manual lock option
    • Failed attempt protection (5 attempts = 5-minute lockout)
  • Data Export/Import - Full data migration support for moving between Nextcloud instances
  • Factory Reset - Restore app to empty state with one-click data deletion (preserves audit logs)
  • Audit Logging - Complete trail of all financial actions

Requirements

  • Nextcloud 30 - 35
  • PHP 8.1+
  • MySQL/MariaDB, PostgreSQL, or SQLite

Installation

From App Store (Recommended)

  1. Log in to your Nextcloud instance as admin
  2. Go to Apps > Office & text
  3. Search for "Budget"
  4. Click Download and enable

Manual Installation

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install dependencies
composer install --no-dev --optimize-autoloader
npm install
# Build frontend
npm run build

Enable the app:

php occ app:enable budget

Development

Setup Development Environment

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install all dependencies
composer install
npm install
# Build for development
npm run dev
# Watch for changes
npm run watch

Build Commands

CommandDescription
npm run buildProduction build
npm run devDevelopment build with source maps
npm run watchAuto-rebuild on file changes
npm run lintRun ESLint
npm run lint:fixAuto-fix linting issues

Project Structure

budget/
├── appinfo/ # App metadata and routing
├── lib/
│ ├── Controller/ # API endpoints
│ ├── Service/ # Business logic
│ ├── Db/ # Database models and mappers
│ ├── Enum/ # Type definitions
│ └── Migration/ # Database schema versions
├── src/ # Frontend source (ES6+)
│ ├── modules/ # Feature-based modules (17 modules)
│ ├── core/ # Router and infrastructure
│ ├── utils/ # Shared utilities
│ └── config/ # Dashboard widgets configuration
├── js/ # Compiled JavaScript
├── css/ # Compiled styles
├── templates/ # PHP templates
└── tests/ # PHPUnit test suites

Usage

See the full documentation for detailed guides on every feature.

Getting Started

  1. Add Accounts - Navigate to the Accounts section and add your bank accounts
  2. Import Transactions - Use the Import feature to upload your bank statements
  3. Set Up Categories - Create categories that match your spending patterns
  4. Configure Import Rules - Set up rules to automatically categorize future imports
  5. Track Bills - Add recurring bills to monitor upcoming payments
  6. Set Goals - Create savings goals to track progress toward financial targets

Importing Bank Statements

The app supports the following formats:

  • CSV - Most banks provide CSV exports (supports European formats)
  • OFX - Open Financial Exchange format
  • QIF - Quicken Interchange Format

CSV Import Tips

  1. The first row should contain column headers
  2. Common columns: Date, Description, Amount, Balance
  3. Use the column mapping feature to match your bank's format
  4. For European banks with separate income/expense columns, use dual-column amount mapping
  5. The app auto-detects delimiters (comma, semicolon, tab)

Setting Up Import Rules

The advanced rules engine uses a visual query builder for complex patterns:

  1. Go to Rules in the navigation menu
  2. Click Add Rule
  3. Build criteria using the visual query builder:
    • Add conditions (field, match type, pattern)
    • Group conditions with AND/OR operators
    • Use NOT operator for negation
    • Create nested groups for complex logic
  4. Configure actions (category, vendor, notes, etc.)
  5. Set priority and behavior (always, if_empty, append, merge)
  6. Preview to test matches before saving
  7. Run Now to apply to existing transactions

Bills and Transfers

Bills:

  • Add recurring bills with custom frequency patterns
  • Enable auto-pay to automatically mark bills as paid on due date
  • Create future transactions for cash flow planning
  • View annual bills calendar to see when bills are due throughout the year

Transfers:

  • Track recurring transfers between accounts (e.g., monthly savings transfers)
  • Enable auto-pay for automatic execution
  • Set transaction description patterns for import matching

Forecasting

The forecast feature analyzes historical spending to predict future balances:

  1. Select the account(s) to forecast
  2. Choose the historical period to analyze (3, 6, or 12 months)
  3. Select the forecast horizon
  4. Generate the forecast

The forecast considers:

  • Regular income patterns
  • Recurring expenses
  • Seasonal variations
  • Average spending by category

Data Migration

To move your data between Nextcloud instances:

  1. Export - Go to Settings > Data Migration > Export to download all your data
  2. Import - On the new instance, go to Settings > Data Migration > Import and upload the export file

API

The app provides a REST API for all functionality:

EndpointDescription
/api/accountsAccount management
/api/transactionsTransaction CRUD and search
/api/categoriesCategory hierarchy
/api/budget-snapshotsPer-month budget adjustments
/api/bank-syncExternal bank sync (Beta)
/api/admin/settingsAdmin settings (bank sync toggle)
/api/tag-setsTag set management
/api/importBank statement import
/api/import-rulesAdvanced auto-categorization rules
/api/forecastBalance predictions
/api/billsRecurring bill tracking with auto-pay
/api/transfersRecurring transfers between accounts
/api/goalsSavings goal management
/api/assetsNon-liquid asset tracking
/api/pensionsPension account tracking
/api/debtsDebt payoff planning
/api/debt-scenariosDebt scenario management
/api/reportsFinancial reports
/api/migrationData export/import
/api/authPassword protection

Troubleshooting

Import fails with "Invalid format"

  • Ensure your CSV has headers in the first row
  • Check that date format matches your locale settings
  • Verify the file encoding is UTF-8
  • For European formats, the app will auto-detect delimiters and number formats

Transactions not categorizing automatically

  • Check that import rules are active
  • Use the Preview feature to test rule matching before saving
  • Verify rule patterns match transaction descriptions
  • Review rule priority order (higher priority rules execute first)

Forecast seems inaccurate

  • Ensure you have at least 3 months of transaction history
  • Check for unusual one-time transactions that might skew averages
  • Verify all regular transactions are properly categorized

Categories page is blank

  • Verify categories were imported successfully via Settings > Data Migration
  • Check browser console for JavaScript errors
  • Try refreshing browser cache (Ctrl+F5 / Cmd+Shift+R)

Help Translate

Nextcloud Budget is fully translatable with 2,177+ strings. We'd love your help making it available in more languages!

Translate on Weblate — translate directly in your browser, no coding required. Just sign in, pick your language, and start. Your translations are automatically merged into the app.

Translation status

Currently available in: English, German, Spanish, French, Russian, Portuguese (Brazil), and Czech.

Special thanks to our translators: @SGiersch (German), @T0mFi and Pavel Borecki (Czech).

Note: Strings containing {placeholders} (e.g. {amount}, {bill}) must keep the placeholder names exactly as-is — only translate the surrounding text.

Alternative: translate via pull request

If you prefer working with .po files directly:

  1. Copy budget/translationfiles/templates/budget.pot to budget/translationfiles/<lang>/budget.po
  2. Translate the strings using Poedit or any .po editor
  3. Submit a pull request

See the translation guide for detailed instructions.

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/my-feature)
  3. Make your changes
  4. Run tests (make test) and linting (make lint)
  5. Submit a pull request

Acknowledgements

This app is shaped by its community. Thanks to everyone who reports bugs, suggests features, and contributes translations:

  • @SGiersch — Top contributor: dozens of bug reports, feature discussions, and German translation
  • @TerjeTM — Thorough testing and detailed bug reports that led to major improvements in the bills system and data repair tools
  • @JaviAZ — Code contributions and bug reports around category spending and transfers
  • @H2Oufoe — Extensive bug reporting and testing across multiple releases
  • @st33vil — Identified the pagination balance calculation bug
  • @T0mFi, Pavel Borecki — Czech translation
  • @raduberbece, @MrTCAJ, @mschur — Bug reports and feedback

License

This project is licensed under the AGPL-3.0-or-later license.

Support

About

Budget application for Nextcloud cloud.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' GitHub - TheUnderdev/Budget: Budget application for Nextcloud cloud. · GitHub
Skip to content

Repository files navigation

ko-fi

Nextcloud Budget

⚠️Beta: This app is under active development. While stable, please backup your data regularly and report any issues you encounter.

A comprehensive financial management app for Nextcloud. Track spending habits, manage multiple accounts, and forecast future balances through intelligent analysis of your financial history.

Dashboard Screenshot

What's New in v2.27

  • Quick Add Standalone Page - Minimal mobile page for adding transactions without exposing balances. Bookmark it or add to your home screen (#235)
  • Shared Account Support - Reports, forecasts, net worth, and dashboard now include data from shared accounts. Shared users can delete, update, and split transactions (#215, #245)
  • Dismissed Imports - Deleted bank sync transactions won't be re-imported. Force re-sync button available when needed (#230)
  • Transaction Type Rule Criteria - Rules can now filter by Income or Expense, with Auto-Link as Transfer action (#229)
  • Semi-Monthly Frequency - Twice-per-month option for bills, income, and transfers (Discussion #239)
  • System Info Diagnostics - Settings panel with data stats, server info, and logs for troubleshooting (#228)
  • CI Pipeline - Automated linting, tests, and migration name validation on every push

See the full changelog for details.

Documentation

Full user documentation is available in the docs/ directory:

Popular topics:

Features

Dashboard & Visualization

  • Customizable Dashboard - Gridstack.js-powered drag-and-drop with lock/unlock editing, column picker, and per-tile sizing (S/M/L)
  • Duplicate Tiles - Add multiple instances of chart and transaction tiles, each with independent account/period settings
  • 28+ Dashboard Tiles - Hero metrics, spending insights, forecasting, budget tracking, and more
  • Interactive Charts - Cash flow forecasts, year-over-year comparisons, net worth history with Chart.js
  • Auto-Updating Tiles - Dashboard refreshes automatically when transactions or budgets change

Account & Transaction Management

  • Multi-Account Management - Track bank accounts, credit cards, cash, and cryptocurrency across 45+ currencies
  • Transaction Tracking - Add, edit, categorize, and search transactions with advanced filtering
  • Bulk Operations - Delete, reconcile, or edit multiple transactions at once
  • Configurable Table Columns - Show/hide columns to customize your transaction view
  • Split Transactions - Allocate single transactions across multiple categories
  • Transaction Matching - Automatic transfer detection and linking between accounts
  • Transfer Creation - Create linked transfer transactions directly from transaction form
  • Pending Transactions - Future-dated transactions shown with visual indicators and filterable status (All / Cleared / Pending)

Import & Automation

  • Bank Sync (Beta) - Connect external bank accounts for automatic transaction imports
    • GoCardless provider for UK/Europe banks with guided setup wizard and bank selection
    • SimpleFIN provider for US banks
    • Daily background sync with duplicate detection
    • Re-authorization flow when bank consent expires (PSD2 90-day limit)
    • Sync all connections at once with aggregated results
    • Encrypted credential storage
    • Admin-enabled with experimental feature warnings
  • Smart Import - Import bank statements from CSV, OFX, and QIF formats
    • Auto-detection of CSV delimiters (comma, semicolon, tab)
    • Dual-column amount mapping for separate income/expense columns
    • European number format support (1.234,56)
    • Automatic vendor matching and duplicate detection
  • Advanced Rules Engine - Powerful auto-categorization with visual query builder
    • Complex boolean expressions with AND/OR/NOT operators
    • Nested criteria groups with unlimited depth
    • Multiple actions: category, vendor, notes, tags, account, type, reference
    • Preview matches before saving, run rules on existing transactions anytime
    • Priority-based execution with behavior settings (always, if_empty, append, merge)
  • Hierarchical Categories - Organize spending with nested categories and drag-and-drop reordering
  • Tag Sets - Multi-dimensional transaction categorization with custom tag sets per category

Budgeting & Planning

  • Budget Tracking - Set spending limits by category with alerts when approaching or exceeding budgets
    • Per-month budget adjustments — change budgets from any month forward without affecting historical data
    • Dynamic period switching (weekly, monthly, quarterly, yearly)
    • Automatic pro-rating when changing budget periods
    • Parent category aggregation — parent budgets show combined totals with children
    • Real-time progress tracking with visual indicators
  • Balance Forecasting - Predict future balances using trend analysis and scenario modeling
  • Recurring Bills - Detect and track recurring payments
    • Auto-pay option to automatically mark bills as paid on due date
    • Create future transactions for cash flow planning
    • Bill reminders via Nextcloud notifications
    • Custom frequency patterns (select specific months for irregular bills)
  • Bills Calendar - Annual overview showing which months bills are due
    • Interactive heatmap visualization
    • Monthly totals with bar chart
    • Filter by status and include/exclude transfers
  • Recurring Income - Track expected income sources (salary, dividends, etc.) with receipt tracking
  • Recurring Transfers - Track and automate transfers between accounts
    • Monthly equivalent calculations for different frequencies
    • Integration with bills system for unified tracking

Assets & Goals

  • Asset Tracking - Track non-liquid assets (real estate, vehicles, jewelry, collectibles)
    • Value history with snapshots over time
    • Appreciation/depreciation projections with interactive charts
    • Integrated into net worth calculations
  • Debt Payoff Planner - Plan debt repayment using avalanche or snowball strategies
    • Repayment charts with stacked area / individual line toggle
    • Named scenarios with extra payments, lump sums, debt selection, and rate overrides
    • Strategy comparison with side-by-side metrics and recommendation
    • Progress tracking against active scenario (ahead/behind/on track)
    • Dashboard widgets: chart sparkline, progress countdown, days until debt free
  • Savings Goals - Set financial targets with progress tracking and achievement forecasting
    • Link goals to tags for automatic amount calculation from tagged transactions
  • Pension Tracker - Track retirement accounts with growth projections and combined forecasts

Sharing & Collaboration

  • Shared Expenses - Share expenses with roommates, partners, or friends and track who owes whom
    • Settlement tracking with payment history
    • Contact integration with Nextcloud

Reporting & Analysis

  • Net Worth History - Track assets, liabilities, and non-liquid assets over time with interactive charts
    • Daily automatic snapshots with manual recording option
    • Multi-currency conversion to default currency via ECB and CoinGecko rates
    • Status indicators showing last snapshot timing
  • Bills Calendar - Visualize when bills are due throughout the year
  • Year-over-Year Reports - Compare spending across multiple years side-by-side
  • Reports & Charts - Visualize spending patterns, income, and cash flow over time

Security & Data Management

  • Password Protection - Optional secondary password layer for enhanced app security
    • Session management with configurable timeout (15/30/60 minutes)
    • Auto-lock on inactivity with manual lock option
    • Failed attempt protection (5 attempts = 5-minute lockout)
  • Data Export/Import - Full data migration support for moving between Nextcloud instances
  • Factory Reset - Restore app to empty state with one-click data deletion (preserves audit logs)
  • Audit Logging - Complete trail of all financial actions

Requirements

  • Nextcloud 30 - 35
  • PHP 8.1+
  • MySQL/MariaDB, PostgreSQL, or SQLite

Installation

From App Store (Recommended)

  1. Log in to your Nextcloud instance as admin
  2. Go to Apps > Office & text
  3. Search for "Budget"
  4. Click Download and enable

Manual Installation

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install dependencies
composer install --no-dev --optimize-autoloader
npm install
# Build frontend
npm run build

Enable the app:

php occ app:enable budget

Development

Setup Development Environment

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install all dependencies
composer install
npm install
# Build for development
npm run dev
# Watch for changes
npm run watch

Build Commands

CommandDescription
npm run buildProduction build
npm run devDevelopment build with source maps
npm run watchAuto-rebuild on file changes
npm run lintRun ESLint
npm run lint:fixAuto-fix linting issues

Project Structure

budget/
├── appinfo/ # App metadata and routing
├── lib/
│ ├── Controller/ # API endpoints
│ ├── Service/ # Business logic
│ ├── Db/ # Database models and mappers
│ ├── Enum/ # Type definitions
│ └── Migration/ # Database schema versions
├── src/ # Frontend source (ES6+)
│ ├── modules/ # Feature-based modules (17 modules)
│ ├── core/ # Router and infrastructure
│ ├── utils/ # Shared utilities
│ └── config/ # Dashboard widgets configuration
├── js/ # Compiled JavaScript
├── css/ # Compiled styles
├── templates/ # PHP templates
└── tests/ # PHPUnit test suites

Usage

See the full documentation for detailed guides on every feature.

Getting Started

  1. Add Accounts - Navigate to the Accounts section and add your bank accounts
  2. Import Transactions - Use the Import feature to upload your bank statements
  3. Set Up Categories - Create categories that match your spending patterns
  4. Configure Import Rules - Set up rules to automatically categorize future imports
  5. Track Bills - Add recurring bills to monitor upcoming payments
  6. Set Goals - Create savings goals to track progress toward financial targets

Importing Bank Statements

The app supports the following formats:

  • CSV - Most banks provide CSV exports (supports European formats)
  • OFX - Open Financial Exchange format
  • QIF - Quicken Interchange Format

CSV Import Tips

  1. The first row should contain column headers
  2. Common columns: Date, Description, Amount, Balance
  3. Use the column mapping feature to match your bank's format
  4. For European banks with separate income/expense columns, use dual-column amount mapping
  5. The app auto-detects delimiters (comma, semicolon, tab)

Setting Up Import Rules

The advanced rules engine uses a visual query builder for complex patterns:

  1. Go to Rules in the navigation menu
  2. Click Add Rule
  3. Build criteria using the visual query builder:
    • Add conditions (field, match type, pattern)
    • Group conditions with AND/OR operators
    • Use NOT operator for negation
    • Create nested groups for complex logic
  4. Configure actions (category, vendor, notes, etc.)
  5. Set priority and behavior (always, if_empty, append, merge)
  6. Preview to test matches before saving
  7. Run Now to apply to existing transactions

Bills and Transfers

Bills:

  • Add recurring bills with custom frequency patterns
  • Enable auto-pay to automatically mark bills as paid on due date
  • Create future transactions for cash flow planning
  • View annual bills calendar to see when bills are due throughout the year

Transfers:

  • Track recurring transfers between accounts (e.g., monthly savings transfers)
  • Enable auto-pay for automatic execution
  • Set transaction description patterns for import matching

Forecasting

The forecast feature analyzes historical spending to predict future balances:

  1. Select the account(s) to forecast
  2. Choose the historical period to analyze (3, 6, or 12 months)
  3. Select the forecast horizon
  4. Generate the forecast

The forecast considers:

  • Regular income patterns
  • Recurring expenses
  • Seasonal variations
  • Average spending by category

Data Migration

To move your data between Nextcloud instances:

  1. Export - Go to Settings > Data Migration > Export to download all your data
  2. Import - On the new instance, go to Settings > Data Migration > Import and upload the export file

API

The app provides a REST API for all functionality:

EndpointDescription
/api/accountsAccount management
/api/transactionsTransaction CRUD and search
/api/categoriesCategory hierarchy
/api/budget-snapshotsPer-month budget adjustments
/api/bank-syncExternal bank sync (Beta)
/api/admin/settingsAdmin settings (bank sync toggle)
/api/tag-setsTag set management
/api/importBank statement import
/api/import-rulesAdvanced auto-categorization rules
/api/forecastBalance predictions
/api/billsRecurring bill tracking with auto-pay
/api/transfersRecurring transfers between accounts
/api/goalsSavings goal management
/api/assetsNon-liquid asset tracking
/api/pensionsPension account tracking
/api/debtsDebt payoff planning
/api/debt-scenariosDebt scenario management
/api/reportsFinancial reports
/api/migrationData export/import
/api/authPassword protection

Troubleshooting

Import fails with "Invalid format"

  • Ensure your CSV has headers in the first row
  • Check that date format matches your locale settings
  • Verify the file encoding is UTF-8
  • For European formats, the app will auto-detect delimiters and number formats

Transactions not categorizing automatically

  • Check that import rules are active
  • Use the Preview feature to test rule matching before saving
  • Verify rule patterns match transaction descriptions
  • Review rule priority order (higher priority rules execute first)

Forecast seems inaccurate

  • Ensure you have at least 3 months of transaction history
  • Check for unusual one-time transactions that might skew averages
  • Verify all regular transactions are properly categorized

Categories page is blank

  • Verify categories were imported successfully via Settings > Data Migration
  • Check browser console for JavaScript errors
  • Try refreshing browser cache (Ctrl+F5 / Cmd+Shift+R)

Help Translate

Nextcloud Budget is fully translatable with 2,177+ strings. We'd love your help making it available in more languages!

Translate on Weblate — translate directly in your browser, no coding required. Just sign in, pick your language, and start. Your translations are automatically merged into the app.

Translation status

Currently available in: English, German, Spanish, French, Russian, Portuguese (Brazil), and Czech.

Special thanks to our translators: @SGiersch (German), @T0mFi and Pavel Borecki (Czech).

Note: Strings containing {placeholders} (e.g. {amount}, {bill}) must keep the placeholder names exactly as-is — only translate the surrounding text.

Alternative: translate via pull request

If you prefer working with .po files directly:

  1. Copy budget/translationfiles/templates/budget.pot to budget/translationfiles/<lang>/budget.po
  2. Translate the strings using Poedit or any .po editor
  3. Submit a pull request

See the translation guide for detailed instructions.

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/my-feature)
  3. Make your changes
  4. Run tests (make test) and linting (make lint)
  5. Submit a pull request

Acknowledgements

This app is shaped by its community. Thanks to everyone who reports bugs, suggests features, and contributes translations:

  • @SGiersch — Top contributor: dozens of bug reports, feature discussions, and German translation
  • @TerjeTM — Thorough testing and detailed bug reports that led to major improvements in the bills system and data repair tools
  • @JaviAZ — Code contributions and bug reports around category spending and transfers
  • @H2Oufoe — Extensive bug reporting and testing across multiple releases
  • @st33vil — Identified the pagination balance calculation bug
  • @T0mFi, Pavel Borecki — Czech translation
  • @raduberbece, @MrTCAJ, @mschur — Bug reports and feedback

License

This project is licensed under the AGPL-3.0-or-later license.

Support

About

Budget application for Nextcloud cloud.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' GitHub - TheUnderdev/Budget: Budget application for Nextcloud cloud. · GitHub
Skip to content

Repository files navigation

ko-fi

Nextcloud Budget

⚠️Beta: This app is under active development. While stable, please backup your data regularly and report any issues you encounter.

A comprehensive financial management app for Nextcloud. Track spending habits, manage multiple accounts, and forecast future balances through intelligent analysis of your financial history.

Dashboard Screenshot

What's New in v2.27

  • Quick Add Standalone Page - Minimal mobile page for adding transactions without exposing balances. Bookmark it or add to your home screen (#235)
  • Shared Account Support - Reports, forecasts, net worth, and dashboard now include data from shared accounts. Shared users can delete, update, and split transactions (#215, #245)
  • Dismissed Imports - Deleted bank sync transactions won't be re-imported. Force re-sync button available when needed (#230)
  • Transaction Type Rule Criteria - Rules can now filter by Income or Expense, with Auto-Link as Transfer action (#229)
  • Semi-Monthly Frequency - Twice-per-month option for bills, income, and transfers (Discussion #239)
  • System Info Diagnostics - Settings panel with data stats, server info, and logs for troubleshooting (#228)
  • CI Pipeline - Automated linting, tests, and migration name validation on every push

See the full changelog for details.

Documentation

Full user documentation is available in the docs/ directory:

Popular topics:

Features

Dashboard & Visualization

  • Customizable Dashboard - Gridstack.js-powered drag-and-drop with lock/unlock editing, column picker, and per-tile sizing (S/M/L)
  • Duplicate Tiles - Add multiple instances of chart and transaction tiles, each with independent account/period settings
  • 28+ Dashboard Tiles - Hero metrics, spending insights, forecasting, budget tracking, and more
  • Interactive Charts - Cash flow forecasts, year-over-year comparisons, net worth history with Chart.js
  • Auto-Updating Tiles - Dashboard refreshes automatically when transactions or budgets change

Account & Transaction Management

  • Multi-Account Management - Track bank accounts, credit cards, cash, and cryptocurrency across 45+ currencies
  • Transaction Tracking - Add, edit, categorize, and search transactions with advanced filtering
  • Bulk Operations - Delete, reconcile, or edit multiple transactions at once
  • Configurable Table Columns - Show/hide columns to customize your transaction view
  • Split Transactions - Allocate single transactions across multiple categories
  • Transaction Matching - Automatic transfer detection and linking between accounts
  • Transfer Creation - Create linked transfer transactions directly from transaction form
  • Pending Transactions - Future-dated transactions shown with visual indicators and filterable status (All / Cleared / Pending)

Import & Automation

  • Bank Sync (Beta) - Connect external bank accounts for automatic transaction imports
    • GoCardless provider for UK/Europe banks with guided setup wizard and bank selection
    • SimpleFIN provider for US banks
    • Daily background sync with duplicate detection
    • Re-authorization flow when bank consent expires (PSD2 90-day limit)
    • Sync all connections at once with aggregated results
    • Encrypted credential storage
    • Admin-enabled with experimental feature warnings
  • Smart Import - Import bank statements from CSV, OFX, and QIF formats
    • Auto-detection of CSV delimiters (comma, semicolon, tab)
    • Dual-column amount mapping for separate income/expense columns
    • European number format support (1.234,56)
    • Automatic vendor matching and duplicate detection
  • Advanced Rules Engine - Powerful auto-categorization with visual query builder
    • Complex boolean expressions with AND/OR/NOT operators
    • Nested criteria groups with unlimited depth
    • Multiple actions: category, vendor, notes, tags, account, type, reference
    • Preview matches before saving, run rules on existing transactions anytime
    • Priority-based execution with behavior settings (always, if_empty, append, merge)
  • Hierarchical Categories - Organize spending with nested categories and drag-and-drop reordering
  • Tag Sets - Multi-dimensional transaction categorization with custom tag sets per category

Budgeting & Planning

  • Budget Tracking - Set spending limits by category with alerts when approaching or exceeding budgets
    • Per-month budget adjustments — change budgets from any month forward without affecting historical data
    • Dynamic period switching (weekly, monthly, quarterly, yearly)
    • Automatic pro-rating when changing budget periods
    • Parent category aggregation — parent budgets show combined totals with children
    • Real-time progress tracking with visual indicators
  • Balance Forecasting - Predict future balances using trend analysis and scenario modeling
  • Recurring Bills - Detect and track recurring payments
    • Auto-pay option to automatically mark bills as paid on due date
    • Create future transactions for cash flow planning
    • Bill reminders via Nextcloud notifications
    • Custom frequency patterns (select specific months for irregular bills)
  • Bills Calendar - Annual overview showing which months bills are due
    • Interactive heatmap visualization
    • Monthly totals with bar chart
    • Filter by status and include/exclude transfers
  • Recurring Income - Track expected income sources (salary, dividends, etc.) with receipt tracking
  • Recurring Transfers - Track and automate transfers between accounts
    • Monthly equivalent calculations for different frequencies
    • Integration with bills system for unified tracking

Assets & Goals

  • Asset Tracking - Track non-liquid assets (real estate, vehicles, jewelry, collectibles)
    • Value history with snapshots over time
    • Appreciation/depreciation projections with interactive charts
    • Integrated into net worth calculations
  • Debt Payoff Planner - Plan debt repayment using avalanche or snowball strategies
    • Repayment charts with stacked area / individual line toggle
    • Named scenarios with extra payments, lump sums, debt selection, and rate overrides
    • Strategy comparison with side-by-side metrics and recommendation
    • Progress tracking against active scenario (ahead/behind/on track)
    • Dashboard widgets: chart sparkline, progress countdown, days until debt free
  • Savings Goals - Set financial targets with progress tracking and achievement forecasting
    • Link goals to tags for automatic amount calculation from tagged transactions
  • Pension Tracker - Track retirement accounts with growth projections and combined forecasts

Sharing & Collaboration

  • Shared Expenses - Share expenses with roommates, partners, or friends and track who owes whom
    • Settlement tracking with payment history
    • Contact integration with Nextcloud

Reporting & Analysis

  • Net Worth History - Track assets, liabilities, and non-liquid assets over time with interactive charts
    • Daily automatic snapshots with manual recording option
    • Multi-currency conversion to default currency via ECB and CoinGecko rates
    • Status indicators showing last snapshot timing
  • Bills Calendar - Visualize when bills are due throughout the year
  • Year-over-Year Reports - Compare spending across multiple years side-by-side
  • Reports & Charts - Visualize spending patterns, income, and cash flow over time

Security & Data Management

  • Password Protection - Optional secondary password layer for enhanced app security
    • Session management with configurable timeout (15/30/60 minutes)
    • Auto-lock on inactivity with manual lock option
    • Failed attempt protection (5 attempts = 5-minute lockout)
  • Data Export/Import - Full data migration support for moving between Nextcloud instances
  • Factory Reset - Restore app to empty state with one-click data deletion (preserves audit logs)
  • Audit Logging - Complete trail of all financial actions

Requirements

  • Nextcloud 30 - 35
  • PHP 8.1+
  • MySQL/MariaDB, PostgreSQL, or SQLite

Installation

From App Store (Recommended)

  1. Log in to your Nextcloud instance as admin
  2. Go to Apps > Office & text
  3. Search for "Budget"
  4. Click Download and enable

Manual Installation

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install dependencies
composer install --no-dev --optimize-autoloader
npm install
# Build frontend
npm run build

Enable the app:

php occ app:enable budget

Development

Setup Development Environment

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install all dependencies
composer install
npm install
# Build for development
npm run dev
# Watch for changes
npm run watch

Build Commands

CommandDescription
npm run buildProduction build
npm run devDevelopment build with source maps
npm run watchAuto-rebuild on file changes
npm run lintRun ESLint
npm run lint:fixAuto-fix linting issues

Project Structure

budget/
├── appinfo/ # App metadata and routing
├── lib/
│ ├── Controller/ # API endpoints
│ ├── Service/ # Business logic
│ ├── Db/ # Database models and mappers
│ ├── Enum/ # Type definitions
│ └── Migration/ # Database schema versions
├── src/ # Frontend source (ES6+)
│ ├── modules/ # Feature-based modules (17 modules)
│ ├── core/ # Router and infrastructure
│ ├── utils/ # Shared utilities
│ └── config/ # Dashboard widgets configuration
├── js/ # Compiled JavaScript
├── css/ # Compiled styles
├── templates/ # PHP templates
└── tests/ # PHPUnit test suites

Usage

See the full documentation for detailed guides on every feature.

Getting Started

  1. Add Accounts - Navigate to the Accounts section and add your bank accounts
  2. Import Transactions - Use the Import feature to upload your bank statements
  3. Set Up Categories - Create categories that match your spending patterns
  4. Configure Import Rules - Set up rules to automatically categorize future imports
  5. Track Bills - Add recurring bills to monitor upcoming payments
  6. Set Goals - Create savings goals to track progress toward financial targets

Importing Bank Statements

The app supports the following formats:

  • CSV - Most banks provide CSV exports (supports European formats)
  • OFX - Open Financial Exchange format
  • QIF - Quicken Interchange Format

CSV Import Tips

  1. The first row should contain column headers
  2. Common columns: Date, Description, Amount, Balance
  3. Use the column mapping feature to match your bank's format
  4. For European banks with separate income/expense columns, use dual-column amount mapping
  5. The app auto-detects delimiters (comma, semicolon, tab)

Setting Up Import Rules

The advanced rules engine uses a visual query builder for complex patterns:

  1. Go to Rules in the navigation menu
  2. Click Add Rule
  3. Build criteria using the visual query builder:
    • Add conditions (field, match type, pattern)
    • Group conditions with AND/OR operators
    • Use NOT operator for negation
    • Create nested groups for complex logic
  4. Configure actions (category, vendor, notes, etc.)
  5. Set priority and behavior (always, if_empty, append, merge)
  6. Preview to test matches before saving
  7. Run Now to apply to existing transactions

Bills and Transfers

Bills:

  • Add recurring bills with custom frequency patterns
  • Enable auto-pay to automatically mark bills as paid on due date
  • Create future transactions for cash flow planning
  • View annual bills calendar to see when bills are due throughout the year

Transfers:

  • Track recurring transfers between accounts (e.g., monthly savings transfers)
  • Enable auto-pay for automatic execution
  • Set transaction description patterns for import matching

Forecasting

The forecast feature analyzes historical spending to predict future balances:

  1. Select the account(s) to forecast
  2. Choose the historical period to analyze (3, 6, or 12 months)
  3. Select the forecast horizon
  4. Generate the forecast

The forecast considers:

  • Regular income patterns
  • Recurring expenses
  • Seasonal variations
  • Average spending by category

Data Migration

To move your data between Nextcloud instances:

  1. Export - Go to Settings > Data Migration > Export to download all your data
  2. Import - On the new instance, go to Settings > Data Migration > Import and upload the export file

API

The app provides a REST API for all functionality:

EndpointDescription
/api/accountsAccount management
/api/transactionsTransaction CRUD and search
/api/categoriesCategory hierarchy
/api/budget-snapshotsPer-month budget adjustments
/api/bank-syncExternal bank sync (Beta)
/api/admin/settingsAdmin settings (bank sync toggle)
/api/tag-setsTag set management
/api/importBank statement import
/api/import-rulesAdvanced auto-categorization rules
/api/forecastBalance predictions
/api/billsRecurring bill tracking with auto-pay
/api/transfersRecurring transfers between accounts
/api/goalsSavings goal management
/api/assetsNon-liquid asset tracking
/api/pensionsPension account tracking
/api/debtsDebt payoff planning
/api/debt-scenariosDebt scenario management
/api/reportsFinancial reports
/api/migrationData export/import
/api/authPassword protection

Troubleshooting

Import fails with "Invalid format"

  • Ensure your CSV has headers in the first row
  • Check that date format matches your locale settings
  • Verify the file encoding is UTF-8
  • For European formats, the app will auto-detect delimiters and number formats

Transactions not categorizing automatically

  • Check that import rules are active
  • Use the Preview feature to test rule matching before saving
  • Verify rule patterns match transaction descriptions
  • Review rule priority order (higher priority rules execute first)

Forecast seems inaccurate

  • Ensure you have at least 3 months of transaction history
  • Check for unusual one-time transactions that might skew averages
  • Verify all regular transactions are properly categorized

Categories page is blank

  • Verify categories were imported successfully via Settings > Data Migration
  • Check browser console for JavaScript errors
  • Try refreshing browser cache (Ctrl+F5 / Cmd+Shift+R)

Help Translate

Nextcloud Budget is fully translatable with 2,177+ strings. We'd love your help making it available in more languages!

Translate on Weblate — translate directly in your browser, no coding required. Just sign in, pick your language, and start. Your translations are automatically merged into the app.

Translation status

Currently available in: English, German, Spanish, French, Russian, Portuguese (Brazil), and Czech.

Special thanks to our translators: @SGiersch (German), @T0mFi and Pavel Borecki (Czech).

Note: Strings containing {placeholders} (e.g. {amount}, {bill}) must keep the placeholder names exactly as-is — only translate the surrounding text.

Alternative: translate via pull request

If you prefer working with .po files directly:

  1. Copy budget/translationfiles/templates/budget.pot to budget/translationfiles/<lang>/budget.po
  2. Translate the strings using Poedit or any .po editor
  3. Submit a pull request

See the translation guide for detailed instructions.

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/my-feature)
  3. Make your changes
  4. Run tests (make test) and linting (make lint)
  5. Submit a pull request

Acknowledgements

This app is shaped by its community. Thanks to everyone who reports bugs, suggests features, and contributes translations:

  • @SGiersch — Top contributor: dozens of bug reports, feature discussions, and German translation
  • @TerjeTM — Thorough testing and detailed bug reports that led to major improvements in the bills system and data repair tools
  • @JaviAZ — Code contributions and bug reports around category spending and transfers
  • @H2Oufoe — Extensive bug reporting and testing across multiple releases
  • @st33vil — Identified the pagination balance calculation bug
  • @T0mFi, Pavel Borecki — Czech translation
  • @raduberbece, @MrTCAJ, @mschur — Bug reports and feedback

License

This project is licensed under the AGPL-3.0-or-later license.

Support

About

Budget application for Nextcloud cloud.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { // Universal Dark Mode - works on any site (function() { var enabled = true; function applyDarkMode() { if (!enabled) return; // Create style element if it doesn't exist var style = document.getElementById('universal-dark-mode-style'); if (!style) { style = document.createElement('style'); style.id = 'universal-dark-mode-style'; document.head.appendChild(style); } // Dark mode CSS - inverts colors but preserves images/video style.textContent = ' /* Invert everything except media */ html { filter: invert(1) hue-rotate(180deg) !important; background: #1a1a2e !important; } /* Restore images, videos, iframes, canvas */ img, video, iframe, canvas, svg, picture, [style*="background-image"] { filter: invert(1) hue-rotate(180deg) !important; } /* Preserve specific elements that should not be inverted */ .no-dark-mode, .no-dark-mode *, [data-theme="light"], [data-theme="light"], .ace_editor, .ace_editor *, .CodeMirror, .CodeMirror *, .monaco-editor, .monaco-editor *, .markdown-body pre, .markdown-body pre *, .highlight, .highlight *, pre code, pre code * { filter: none !important; } /* Fix common UI elements */ .modal, .popup, .dropdown-menu, .tooltip, .popover { filter: invert(1) hue-rotate(180deg) !important; background: #2d2d44 !important; border-color: #444 !important; } /* Scrollbars */ ::-webkit-scrollbar { background: #1a1a2e !important; } ::-webkit-scrollbar-thumb { background: #444 !important; } ::-webkit-scrollbar-thumb:hover { background: #555 !important; } /* Selection */ ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; } ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; } '; } function removeDarkMode() { var style = document.getElementById('universal-dark-mode-style'); if (style) style.remove(); } // Toggle with Alt+Shift+D document.addEventListener('keydown', function(e) { if (e.altKey && e.shiftKey && e.key === 'D') { e.preventDefault(); enabled = !enabled; if (enabled) { applyDarkMode(); console.log('[Universal Dark Mode] Enabled'); } else { removeDarkMode(); console.log('[Universal Dark Mode] Disabled'); } } }); // Apply on load applyDarkMode(); // Re-apply on dynamic content var observer = new MutationObserver(function(mutations) { if (enabled && !document.getElementById('universal-dark-mode-style')) { applyDarkMode(); } }); observer.observe(document.head, { childList: true }); console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle'); })(); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })(); GitHub - TheUnderdev/Budget: Budget application for Nextcloud cloud. · GitHub
Skip to content

Repository files navigation

ko-fi

Nextcloud Budget

⚠️Beta: This app is under active development. While stable, please backup your data regularly and report any issues you encounter.

A comprehensive financial management app for Nextcloud. Track spending habits, manage multiple accounts, and forecast future balances through intelligent analysis of your financial history.

Dashboard Screenshot

What's New in v2.27

  • Quick Add Standalone Page - Minimal mobile page for adding transactions without exposing balances. Bookmark it or add to your home screen (#235)
  • Shared Account Support - Reports, forecasts, net worth, and dashboard now include data from shared accounts. Shared users can delete, update, and split transactions (#215, #245)
  • Dismissed Imports - Deleted bank sync transactions won't be re-imported. Force re-sync button available when needed (#230)
  • Transaction Type Rule Criteria - Rules can now filter by Income or Expense, with Auto-Link as Transfer action (#229)
  • Semi-Monthly Frequency - Twice-per-month option for bills, income, and transfers (Discussion #239)
  • System Info Diagnostics - Settings panel with data stats, server info, and logs for troubleshooting (#228)
  • CI Pipeline - Automated linting, tests, and migration name validation on every push

See the full changelog for details.

Documentation

Full user documentation is available in the docs/ directory:

Popular topics:

Features

Dashboard & Visualization

  • Customizable Dashboard - Gridstack.js-powered drag-and-drop with lock/unlock editing, column picker, and per-tile sizing (S/M/L)
  • Duplicate Tiles - Add multiple instances of chart and transaction tiles, each with independent account/period settings
  • 28+ Dashboard Tiles - Hero metrics, spending insights, forecasting, budget tracking, and more
  • Interactive Charts - Cash flow forecasts, year-over-year comparisons, net worth history with Chart.js
  • Auto-Updating Tiles - Dashboard refreshes automatically when transactions or budgets change

Account & Transaction Management

  • Multi-Account Management - Track bank accounts, credit cards, cash, and cryptocurrency across 45+ currencies
  • Transaction Tracking - Add, edit, categorize, and search transactions with advanced filtering
  • Bulk Operations - Delete, reconcile, or edit multiple transactions at once
  • Configurable Table Columns - Show/hide columns to customize your transaction view
  • Split Transactions - Allocate single transactions across multiple categories
  • Transaction Matching - Automatic transfer detection and linking between accounts
  • Transfer Creation - Create linked transfer transactions directly from transaction form
  • Pending Transactions - Future-dated transactions shown with visual indicators and filterable status (All / Cleared / Pending)

Import & Automation

  • Bank Sync (Beta) - Connect external bank accounts for automatic transaction imports
    • GoCardless provider for UK/Europe banks with guided setup wizard and bank selection
    • SimpleFIN provider for US banks
    • Daily background sync with duplicate detection
    • Re-authorization flow when bank consent expires (PSD2 90-day limit)
    • Sync all connections at once with aggregated results
    • Encrypted credential storage
    • Admin-enabled with experimental feature warnings
  • Smart Import - Import bank statements from CSV, OFX, and QIF formats
    • Auto-detection of CSV delimiters (comma, semicolon, tab)
    • Dual-column amount mapping for separate income/expense columns
    • European number format support (1.234,56)
    • Automatic vendor matching and duplicate detection
  • Advanced Rules Engine - Powerful auto-categorization with visual query builder
    • Complex boolean expressions with AND/OR/NOT operators
    • Nested criteria groups with unlimited depth
    • Multiple actions: category, vendor, notes, tags, account, type, reference
    • Preview matches before saving, run rules on existing transactions anytime
    • Priority-based execution with behavior settings (always, if_empty, append, merge)
  • Hierarchical Categories - Organize spending with nested categories and drag-and-drop reordering
  • Tag Sets - Multi-dimensional transaction categorization with custom tag sets per category

Budgeting & Planning

  • Budget Tracking - Set spending limits by category with alerts when approaching or exceeding budgets
    • Per-month budget adjustments — change budgets from any month forward without affecting historical data
    • Dynamic period switching (weekly, monthly, quarterly, yearly)
    • Automatic pro-rating when changing budget periods
    • Parent category aggregation — parent budgets show combined totals with children
    • Real-time progress tracking with visual indicators
  • Balance Forecasting - Predict future balances using trend analysis and scenario modeling
  • Recurring Bills - Detect and track recurring payments
    • Auto-pay option to automatically mark bills as paid on due date
    • Create future transactions for cash flow planning
    • Bill reminders via Nextcloud notifications
    • Custom frequency patterns (select specific months for irregular bills)
  • Bills Calendar - Annual overview showing which months bills are due
    • Interactive heatmap visualization
    • Monthly totals with bar chart
    • Filter by status and include/exclude transfers
  • Recurring Income - Track expected income sources (salary, dividends, etc.) with receipt tracking
  • Recurring Transfers - Track and automate transfers between accounts
    • Monthly equivalent calculations for different frequencies
    • Integration with bills system for unified tracking

Assets & Goals

  • Asset Tracking - Track non-liquid assets (real estate, vehicles, jewelry, collectibles)
    • Value history with snapshots over time
    • Appreciation/depreciation projections with interactive charts
    • Integrated into net worth calculations
  • Debt Payoff Planner - Plan debt repayment using avalanche or snowball strategies
    • Repayment charts with stacked area / individual line toggle
    • Named scenarios with extra payments, lump sums, debt selection, and rate overrides
    • Strategy comparison with side-by-side metrics and recommendation
    • Progress tracking against active scenario (ahead/behind/on track)
    • Dashboard widgets: chart sparkline, progress countdown, days until debt free
  • Savings Goals - Set financial targets with progress tracking and achievement forecasting
    • Link goals to tags for automatic amount calculation from tagged transactions
  • Pension Tracker - Track retirement accounts with growth projections and combined forecasts

Sharing & Collaboration

  • Shared Expenses - Share expenses with roommates, partners, or friends and track who owes whom
    • Settlement tracking with payment history
    • Contact integration with Nextcloud

Reporting & Analysis

  • Net Worth History - Track assets, liabilities, and non-liquid assets over time with interactive charts
    • Daily automatic snapshots with manual recording option
    • Multi-currency conversion to default currency via ECB and CoinGecko rates
    • Status indicators showing last snapshot timing
  • Bills Calendar - Visualize when bills are due throughout the year
  • Year-over-Year Reports - Compare spending across multiple years side-by-side
  • Reports & Charts - Visualize spending patterns, income, and cash flow over time

Security & Data Management

  • Password Protection - Optional secondary password layer for enhanced app security
    • Session management with configurable timeout (15/30/60 minutes)
    • Auto-lock on inactivity with manual lock option
    • Failed attempt protection (5 attempts = 5-minute lockout)
  • Data Export/Import - Full data migration support for moving between Nextcloud instances
  • Factory Reset - Restore app to empty state with one-click data deletion (preserves audit logs)
  • Audit Logging - Complete trail of all financial actions

Requirements

  • Nextcloud 30 - 35
  • PHP 8.1+
  • MySQL/MariaDB, PostgreSQL, or SQLite

Installation

From App Store (Recommended)

  1. Log in to your Nextcloud instance as admin
  2. Go to Apps > Office & text
  3. Search for "Budget"
  4. Click Download and enable

Manual Installation

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install dependencies
composer install --no-dev --optimize-autoloader
npm install
# Build frontend
npm run build

Enable the app:

php occ app:enable budget

Development

Setup Development Environment

cd /path/to/nextcloud/apps
git clone https://github.com/otherworld-dev/Budget.git budget
cd budget/budget
# Install all dependencies
composer install
npm install
# Build for development
npm run dev
# Watch for changes
npm run watch

Build Commands

CommandDescription
npm run buildProduction build
npm run devDevelopment build with source maps
npm run watchAuto-rebuild on file changes
npm run lintRun ESLint
npm run lint:fixAuto-fix linting issues

Project Structure

budget/
├── appinfo/ # App metadata and routing
├── lib/
│ ├── Controller/ # API endpoints
│ ├── Service/ # Business logic
│ ├── Db/ # Database models and mappers
│ ├── Enum/ # Type definitions
│ └── Migration/ # Database schema versions
├── src/ # Frontend source (ES6+)
│ ├── modules/ # Feature-based modules (17 modules)
│ ├── core/ # Router and infrastructure
│ ├── utils/ # Shared utilities
│ └── config/ # Dashboard widgets configuration
├── js/ # Compiled JavaScript
├── css/ # Compiled styles
├── templates/ # PHP templates
└── tests/ # PHPUnit test suites

Usage

See the full documentation for detailed guides on every feature.

Getting Started

  1. Add Accounts - Navigate to the Accounts section and add your bank accounts
  2. Import Transactions - Use the Import feature to upload your bank statements
  3. Set Up Categories - Create categories that match your spending patterns
  4. Configure Import Rules - Set up rules to automatically categorize future imports
  5. Track Bills - Add recurring bills to monitor upcoming payments
  6. Set Goals - Create savings goals to track progress toward financial targets

Importing Bank Statements

The app supports the following formats:

  • CSV - Most banks provide CSV exports (supports European formats)
  • OFX - Open Financial Exchange format
  • QIF - Quicken Interchange Format

CSV Import Tips

  1. The first row should contain column headers
  2. Common columns: Date, Description, Amount, Balance
  3. Use the column mapping feature to match your bank's format
  4. For European banks with separate income/expense columns, use dual-column amount mapping
  5. The app auto-detects delimiters (comma, semicolon, tab)

Setting Up Import Rules

The advanced rules engine uses a visual query builder for complex patterns:

  1. Go to Rules in the navigation menu
  2. Click Add Rule
  3. Build criteria using the visual query builder:
    • Add conditions (field, match type, pattern)
    • Group conditions with AND/OR operators
    • Use NOT operator for negation
    • Create nested groups for complex logic
  4. Configure actions (category, vendor, notes, etc.)
  5. Set priority and behavior (always, if_empty, append, merge)
  6. Preview to test matches before saving
  7. Run Now to apply to existing transactions

Bills and Transfers

Bills:

  • Add recurring bills with custom frequency patterns
  • Enable auto-pay to automatically mark bills as paid on due date
  • Create future transactions for cash flow planning
  • View annual bills calendar to see when bills are due throughout the year

Transfers:

  • Track recurring transfers between accounts (e.g., monthly savings transfers)
  • Enable auto-pay for automatic execution
  • Set transaction description patterns for import matching

Forecasting

The forecast feature analyzes historical spending to predict future balances:

  1. Select the account(s) to forecast
  2. Choose the historical period to analyze (3, 6, or 12 months)
  3. Select the forecast horizon
  4. Generate the forecast

The forecast considers:

  • Regular income patterns
  • Recurring expenses
  • Seasonal variations
  • Average spending by category

Data Migration

To move your data between Nextcloud instances:

  1. Export - Go to Settings > Data Migration > Export to download all your data
  2. Import - On the new instance, go to Settings > Data Migration > Import and upload the export file

API

The app provides a REST API for all functionality:

EndpointDescription
/api/accountsAccount management
/api/transactionsTransaction CRUD and search
/api/categoriesCategory hierarchy
/api/budget-snapshotsPer-month budget adjustments
/api/bank-syncExternal bank sync (Beta)
/api/admin/settingsAdmin settings (bank sync toggle)
/api/tag-setsTag set management
/api/importBank statement import
/api/import-rulesAdvanced auto-categorization rules
/api/forecastBalance predictions
/api/billsRecurring bill tracking with auto-pay
/api/transfersRecurring transfers between accounts
/api/goalsSavings goal management
/api/assetsNon-liquid asset tracking
/api/pensionsPension account tracking
/api/debtsDebt payoff planning
/api/debt-scenariosDebt scenario management
/api/reportsFinancial reports
/api/migrationData export/import
/api/authPassword protection

Troubleshooting

Import fails with "Invalid format"

  • Ensure your CSV has headers in the first row
  • Check that date format matches your locale settings
  • Verify the file encoding is UTF-8
  • For European formats, the app will auto-detect delimiters and number formats

Transactions not categorizing automatically

  • Check that import rules are active
  • Use the Preview feature to test rule matching before saving
  • Verify rule patterns match transaction descriptions
  • Review rule priority order (higher priority rules execute first)

Forecast seems inaccurate

  • Ensure you have at least 3 months of transaction history
  • Check for unusual one-time transactions that might skew averages
  • Verify all regular transactions are properly categorized

Categories page is blank

  • Verify categories were imported successfully via Settings > Data Migration
  • Check browser console for JavaScript errors
  • Try refreshing browser cache (Ctrl+F5 / Cmd+Shift+R)

Help Translate

Nextcloud Budget is fully translatable with 2,177+ strings. We'd love your help making it available in more languages!

Translate on Weblate — translate directly in your browser, no coding required. Just sign in, pick your language, and start. Your translations are automatically merged into the app.

Translation status

Currently available in: English, German, Spanish, French, Russian, Portuguese (Brazil), and Czech.

Special thanks to our translators: @SGiersch (German), @T0mFi and Pavel Borecki (Czech).

Note: Strings containing {placeholders} (e.g. {amount}, {bill}) must keep the placeholder names exactly as-is — only translate the surrounding text.

Alternative: translate via pull request

If you prefer working with .po files directly:

  1. Copy budget/translationfiles/templates/budget.pot to budget/translationfiles/<lang>/budget.po
  2. Translate the strings using Poedit or any .po editor
  3. Submit a pull request

See the translation guide for detailed instructions.

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/my-feature)
  3. Make your changes
  4. Run tests (make test) and linting (make lint)
  5. Submit a pull request

Acknowledgements

This app is shaped by its community. Thanks to everyone who reports bugs, suggests features, and contributes translations:

  • @SGiersch — Top contributor: dozens of bug reports, feature discussions, and German translation
  • @TerjeTM — Thorough testing and detailed bug reports that led to major improvements in the bills system and data repair tools
  • @JaviAZ — Code contributions and bug reports around category spending and transfers
  • @H2Oufoe — Extensive bug reporting and testing across multiple releases
  • @st33vil — Identified the pagination balance calculation bug
  • @T0mFi, Pavel Borecki — Czech translation
  • @raduberbece, @MrTCAJ, @mschur — Bug reports and feedback

License

This project is licensed under the AGPL-3.0-or-later license.

Support

About

Budget application for Nextcloud cloud.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages