Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
8422c14
Initial plan
Copilot Feb 12, 2026
b34fed1
Add C# data model files for EFP Analyzer Blazor project
Copilot Feb 12, 2026
1b54f72
Add C# service files (DocumentProcessorService, ScoringService, Compa…
Copilot Feb 12, 2026
b0a60d5
Create Blazor UI components for EFP Analyzer 3-step workflow
Copilot Feb 12, 2026
4d7847d
Add xUnit tests for EfpAnalyzer Models (45 tests across 5 files)
Copilot Feb 12, 2026
83f52f5
Update README.md to reflect .NET 10 Blazor rewrite
Copilot Feb 12, 2026
e1d0638
Fix static asset serving, update IaC for .NET 10, add tests and README
Copilot Feb 12, 2026
0b55745
Rename EFP to RFP throughout codebase (directories, namespaces, UI st…
Copilot Feb 12, 2026
c26e057
Move Dockerfile and .NET app files into app/ folder, fix azure.yaml p…
Copilot Feb 12, 2026
855688e
Update .NET 10 from preview to stable release in Dockerfile and globa…
Copilot Feb 12, 2026
34a4f85
Add Microsoft.Agents.AI.OpenAI NuGet packages
Copilot Feb 13, 2026
1b3eb02
Integrate Microsoft Agent Framework multi-agent pattern with orchestr…
Copilot Feb 13, 2026
b7886f5
Add appsettings.template.json with Azure DefaultAzureCredential confi…
Copilot Feb 13, 2026
8d0d1cd
Fix appsettings.template.json to use valid JSON (no comments)
Copilot Feb 13, 2026
e3837f6
Add Azure.AI.DocumentIntelligence 1.0.0 NuGet package
Copilot Feb 14, 2026
c04e14b
Replace raw HTTP Document Intelligence calls with official Azure.AI.D…
Copilot Feb 14, 2026
3ce5d7d
Refactor configuration handling and improve error messages for Azure …
amgdy Feb 14, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 8 additions & 26 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,22 @@
# =============================================================================
# RFP Analyzer - Docker Ignore
# =============================================================================
# Files and directories to exclude from Docker build context

# Git
.git
.gitignore

# Python
# .NET build artifacts
**/bin
**/obj
**/out
**/.vs

# Python (legacy)
__pycache__
*.py[cod]
*$py.class
*.so
.Python
.venv
venv
ENV
env
.eggs
*.egg-info
*.egg

# IDE and editors
.vscode
Expand All @@ -39,29 +36,14 @@ Thumbs.db

# Test files
test.http
tests/
*.test.py
*_test.py
**/tests/

# Documentation (not needed in container)
docs/
*.md
!app/scoring_guide.md
!README.md

# Build artifacts
dist/
build/
*.whl

# Logs
*.log
logs/

# uv cache (we use uv.lock but not cache)
.uv_cache

# Misc
.coverage
.pytest_cache
htmlcov/
Loading