b731256fef
Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
133 lines
6.0 KiB
Markdown
133 lines
6.0 KiB
Markdown
# Copilot Instructions for DocuElevate
|
|
|
|
## Project Overview
|
|
|
|
DocuElevate is an intelligent document processing system that automates handling, extraction, and processing of documents. It integrates with multiple cloud storage providers (Dropbox, Google Drive, OneDrive, S3, Nextcloud) and uses AI services (OpenAI, Azure Document Intelligence) for metadata extraction and OCR.
|
|
|
|
## Tech Stack
|
|
|
|
- **Backend**: FastAPI, SQLAlchemy, Celery, Redis
|
|
- **Frontend**: Jinja2 templates, Tailwind CSS
|
|
- **AI/ML**: OpenAI API, Azure Document Intelligence
|
|
- **Auth**: Authentik (OAuth2), Basic Auth
|
|
- **Infrastructure**: Docker, Docker Compose, Alembic (migrations)
|
|
- **Testing**: Pytest, pytest-asyncio, httpx
|
|
|
|
## Core Principles
|
|
|
|
### Code Quality
|
|
- Always use **Black** for formatting (line length: 120)
|
|
- Use **isort** with Black profile for import sorting
|
|
- Use **flake8** for linting (ignore E203, W503)
|
|
- Use **type hints** for all function parameters and return values
|
|
- Write **docstrings** for all public functions, classes, and modules
|
|
- Maintain **80% test coverage** for new code
|
|
|
|
### Python Conventions
|
|
- Use descriptive variable names (e.g., `user_document_path`, not `udp`)
|
|
- Follow PEP 8 naming: `snake_case` for functions/variables, `PascalCase` for classes
|
|
- Use type hints from `typing` module (Dict, List, Optional, etc.)
|
|
- Prefer `pathlib.Path` over string paths for file operations
|
|
- Use f-strings for string formatting, not `.format()` or `%`
|
|
- Handle exceptions explicitly - avoid bare `except:` clauses
|
|
|
|
### Security Best Practices
|
|
- **Never commit secrets or credentials** to the repository
|
|
- Use environment variables for sensitive configuration (see `.env.demo`)
|
|
- Validate and sanitize all user inputs
|
|
- Use parameterized queries with SQLAlchemy (never raw SQL with user input)
|
|
- Review [SECURITY_AUDIT.md](../SECURITY_AUDIT.md) before making security-related changes
|
|
- Run `bandit` to check for security issues in Python code
|
|
|
|
### FastAPI Patterns
|
|
- Organize endpoints by feature in `app/api/` directory
|
|
- Use dependency injection for database sessions and authentication
|
|
- Return Pydantic models from endpoints for automatic validation
|
|
- Use proper HTTP status codes (200, 201, 400, 401, 403, 404, 500)
|
|
- Document endpoints with docstrings for OpenAPI documentation
|
|
- Use `async def` for I/O-bound operations
|
|
|
|
### Database (SQLAlchemy)
|
|
- All models are defined in `app/models.py`
|
|
- Use Alembic for schema migrations (create migration for any model change)
|
|
- Use declarative base for models
|
|
- Define relationships with `relationship()` and proper `back_populates`
|
|
- Use database sessions from `app.database.get_db()` dependency
|
|
- Always close sessions in `finally` blocks or use context managers
|
|
|
|
### Celery Tasks
|
|
- Define tasks in `app/tasks/` directory, organized by feature
|
|
- Use descriptive task names: `module.action` (e.g., `document.process_ocr`)
|
|
- Set appropriate retry policies and error handling
|
|
- Log progress and errors using Python's `logging` module
|
|
- Use `bind=True` for tasks that need access to task instance
|
|
- Keep tasks idempotent when possible
|
|
|
|
### Frontend
|
|
- Templates are in `frontend/templates/` using Jinja2
|
|
- Static files (CSS, JS, images) in `frontend/static/`
|
|
- Use Tailwind CSS utility classes (already configured)
|
|
- Keep JavaScript minimal - prefer server-side rendering
|
|
- Follow existing template structure and patterns
|
|
|
|
### Testing
|
|
- Write tests in `tests/` directory, mirroring `app/` structure
|
|
- Use pytest markers: `@pytest.mark.unit`, `@pytest.mark.integration`, etc.
|
|
- Mock external services (OpenAI, Azure, cloud storage) in tests
|
|
- Use `pytest.fixture` for test setup and teardown
|
|
- Run tests with: `pytest -v`
|
|
- Check coverage with: `pytest --cov=app --cov-report=term-missing`
|
|
|
|
### Configuration
|
|
- All configuration is in `app/config.py` using Pydantic Settings
|
|
- Use environment variables for configuration (12-factor app)
|
|
- Provide sensible defaults when possible
|
|
- Document all configuration options in `docs/ConfigurationGuide.md`
|
|
|
|
### Documentation
|
|
- Keep documentation in `docs/` directory in Markdown format
|
|
- Update relevant docs when adding features or changing behavior
|
|
- User-facing documentation should be clear and include examples
|
|
- Reference existing docs: `docs/UserGuide.md`, `docs/API.md`, `docs/DeploymentGuide.md`
|
|
- See [AGENTIC_CODING.md](../AGENTIC_CODING.md) for detailed development guide
|
|
|
|
### Error Handling
|
|
- Use custom exceptions defined in application (follow existing patterns)
|
|
- Log errors with context using Python's `logging` module
|
|
- Return user-friendly error messages in API responses
|
|
- Include error details in development, sanitize in production
|
|
|
|
### Dependencies
|
|
- Add new dependencies to `requirements.txt` (production) or `requirements-dev.txt` (development)
|
|
- Document any new dependencies and their licenses in README.md
|
|
- Check for security vulnerabilities with `safety check`
|
|
- Pin major versions, allow minor updates (e.g., `fastapi>=0.100.0,<1.0.0`)
|
|
|
|
### Git Workflow
|
|
- Write clear, descriptive commit messages
|
|
- Keep commits focused and atomic
|
|
- Run tests and linters before committing
|
|
- Pre-commit hooks are configured (`.pre-commit-config.yaml`)
|
|
- Follow conventional commits format when appropriate
|
|
|
|
### File Organization
|
|
- Place API endpoints in `app/api/` organized by feature
|
|
- Background tasks go in `app/tasks/`
|
|
- Utility functions in `app/utils/`
|
|
- UI routes in `app/views/`
|
|
- Database models in `app/models.py`
|
|
- Configuration in `app/config.py`
|
|
|
|
### Common Patterns
|
|
- Use `from typing import Optional, Dict, List, Any` for type hints
|
|
- Import FastAPI dependencies: `from fastapi import Depends, HTTPException, status`
|
|
- Get DB session: `db: Session = Depends(get_db)`
|
|
- Current user: `current_user: User = Depends(get_current_user)`
|
|
- Logger: `import logging; logger = logging.getLogger(__name__)`
|
|
|
|
## Resources
|
|
- [AGENTIC_CODING.md](../AGENTIC_CODING.md) - Comprehensive development guide
|
|
- [CONTRIBUTING.md](../CONTRIBUTING.md) - Contribution guidelines
|
|
- [SECURITY_AUDIT.md](../SECURITY_AUDIT.md) - Security considerations
|
|
- [README.md](../README.md) - Project overview and quickstart
|