Receipt Tracker App built on Capacitor, React and MUI
Find a file
JMTNTBANG 0069b4fb57
v0.3.0 - OCR and Data Backup (#17)
- Added the Ability to Scan Receipt images using Gemini's API to autofill Receipt information, which can be toggled with the OCR Toggle Switch in the Receipt details screen.
- Created a Proxy server to serve as the Middleman between the User and Gemini to ensure API Key security.
- You can now restore a JSON backup
- Renamed JSON export to Create Backup
- Fixed bug with images not being exported properly
- Broadcast Dev Newsletters to app users. Message defined in `/newsletter/newsletter.txt`
- Added Dynamic OCR Model Identification. Pulls OCR model from endpoint `/ocr/model` in the API and shows in the receipt page.
2026-01-17 18:07:32 -06:00
.idea v0.1.0 - Initial App Alpha Build 2025-12-27 00:59:15 -06:00
android OCR Functionality (#7) 2026-01-13 00:44:30 -06:00
gplay_assets v0.1.1 - Adjusted Footer Size (#3) 2025-12-28 16:23:26 -06:00
public v0.1.0 - Initial App Alpha Build 2025-12-27 00:59:15 -06:00
src Newsletter API (#15) 2026-01-17 13:32:48 -06:00
.gitignore OCR Functionality (#7) 2026-01-13 00:44:30 -06:00
capacitor.config.ts OCR Functionality (#7) 2026-01-13 00:44:30 -06:00
eslint.config.js v0.1.0 - Initial App Alpha Build 2025-12-27 00:59:15 -06:00
index.html v0.1.0 - Initial App Alpha Build 2025-12-27 00:59:15 -06:00
package-lock.json OCR Functionality (#7) 2026-01-13 00:44:30 -06:00
package.json OCR Functionality (#7) 2026-01-13 00:44:30 -06:00
README.md v0.1.0 - Initial App Alpha Build 2025-12-27 00:59:15 -06:00
tsconfig.app.json v0.1.0 - Initial App Alpha Build 2025-12-27 00:59:15 -06:00
tsconfig.json v0.1.0 - Initial App Alpha Build 2025-12-27 00:59:15 -06:00
tsconfig.node.json v0.1.0 - Initial App Alpha Build 2025-12-27 00:59:15 -06:00
vite.config.ts v0.1.0 - Initial App Alpha Build 2025-12-27 00:59:15 -06:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

React Compiler

The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...

      // Remove tseslint.configs.recommended and replace with this
      tseslint.configs.recommendedTypeChecked,
      // Alternatively, use this for stricter rules
      tseslint.configs.strictTypeChecked,
      // Optionally, add this for stylistic rules
      tseslint.configs.stylisticTypeChecked,

      // Other configs...
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      // Other configs...
      // Enable lint rules for React
      reactX.configs['recommended-typescript'],
      // Enable lint rules for React DOM
      reactDom.configs.recommended,
    ],
    languageOptions: {
      parserOptions: {
        project: ['./tsconfig.node.json', './tsconfig.app.json'],
        tsconfigRootDir: import.meta.dirname,
      },
      // other options...
    },
  },
])