Commit graph

11 commits

Author SHA1 Message Date
Kenearos
adf8f0240e
Merge pull request #4 from Kenearos/claude/deploy-railway-6hRPP
feat: Store API key locally in browser instead of build-time
2026-01-28 20:08:45 +01:00
Claude
b23daec6e5
feat: Store API key locally in browser instead of build-time
- Add apiKeyService for localStorage-based API key management
- Add ApiKeyModal component for entering/updating API key
- Update geminiService to use dynamic API key
- Remove .env.example as API key is now user-provided
- Update to gemini-2.0-flash model

The API key is now stored only in the user's browser localStorage,
making the app more secure and easier to deploy.

https://claude.ai/code/session_01DBAyjuKW8Qtzixc64qn9KP
2026-01-28 19:07:38 +00:00
Kenearos
24a5c26d45
Merge pull request #3 from Kenearos/claude/deploy-railway-6hRPP
Add environment configuration and production deployment setup
2026-01-28 20:01:43 +01:00
Claude
1a758f9f8c
feat: Add Railway deployment configuration
- Add serve as production server for static files
- Add start script for production deployment
- Create railway.toml with deployment settings
- Create .env.example for required environment variables
- Fix index.html to use Vite bundling instead of ESM imports

https://claude.ai/code/session_01DBAyjuKW8Qtzixc64qn9KP
2026-01-28 18:59:50 +00:00
Kenearos
86bce39a2e
Merge pull request #2 from Kenearos/claude/improve-test-coverage-BRTDA
Add comprehensive test suite for React components and Python utilities
2026-01-28 19:55:08 +01:00
Claude
7b6c9a8630
chore: Add Python cache directories to .gitignore
https://claude.ai/code/session_01Wi3BtYKgQu6v4zbydtG6Sy
2026-01-28 18:53:25 +00:00
Claude
cbacd3430c
feat: Add comprehensive test suite for all services and components
- Set up Vitest with testing-library for React component tests
- Add 20 tests for pdfService (field extraction, PDF filling, visual overlay)
- Add 14 tests for geminiService with mocked API responses
- Add 17 tests for FileUpload component (drag-drop, file selection, preview)
- Add 28 tests for ReviewPanel component (rendering, editing, filtering)
- Add 21 Python tests for fill_pdf.py (extraction, filling, CLI)

Total: 100 tests covering critical functionality

https://claude.ai/code/session_01Wi3BtYKgQu6v4zbydtG6Sy
2026-01-28 18:52:43 +00:00
Kenearos
48306e882d
Merge pull request #1 from Kenearos/claude/pdf-form-filler-LiPT9
Add PDF form filler utility for automated AcroForm field population
2026-01-28 19:37:31 +01:00
Claude
dd590bd22c
feat: Add PDF form filler script for AcroForm fields
Add Python script to automatically fill PDF forms with AcroForm fields:
- extract_fields(): Extract all form field names and types from PDF
- fill_pdf(): Fill PDF with values from JSON input
- Support for both list and dict JSON formats
- Checkbox values support (/On, /Off, /Ja, /Nein)

https://claude.ai/code/session_01Dq1f9hjJFq859ShW2kZ26R
2026-01-28 18:36:54 +00:00
Kenearos
d2ea8a0cd4 feat: Initialize AutoForm AI project structure
Sets up the basic project structure for AutoForm AI, including:
- Vite for build tooling and development server.
- React and ReactDOM for the UI.
- TypeScript for static typing.
- Essential dependencies for PDF manipulation (jspdf, pdf-lib) and AI integration (@google/genai).
- Basic HTML structure and styling.
- Component definitions and service interfaces for future development.
- A README with local development instructions.
2026-01-28 19:23:47 +01:00
Kenearos
f1f796c9ca
Initial commit 2026-01-28 19:19:57 +01:00