Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
e561012
add in healthcare support portal example from aydrian
erinmikailstaples Sep 2, 2025
0f2cfa1
add healthcare support portal link
erinmikailstaples Sep 2, 2025
0c0cd83
update readme
erinmikailstaples Sep 2, 2025
06ae4c0
update galileo import
erinmikailstaples Sep 2, 2025
4a2604e
update SSR
erinmikailstaples Sep 2, 2025
1a299ed
update routes :)
erinmikailstaples Sep 2, 2025
0a2cf47
update routes, improve changes
erinmikailstaples Sep 2, 2025
accdb6b
update imports
erinmikailstaples Sep 2, 2025
5f591e3
update chat connection
erinmikailstaples Sep 2, 2025
0d9dd8a
udpate run script and readme.
erinmikailstaples Sep 3, 2025
21a8375
update readme
erinmikailstaples Sep 3, 2025
ee0de53
clean up redundant files
erinmikailstaples Sep 3, 2025
174aec8
update galileo performance.
erinmikailstaples Sep 3, 2025
1228bf0
update dependencies and chat
erinmikailstaples Sep 3, 2025
1c46354
update seeding script.
erinmikailstaples Sep 3, 2025
dcab2c2
update authentication workflow
erinmikailstaples Sep 3, 2025
803977e
woo, observability layer is working!
erinmikailstaples Sep 3, 2025
2526102
final observability update.
erinmikailstaples Sep 3, 2025
d6f9298
update README
erinmikailstaples Sep 3, 2025
304a6a4
feat: format code
erinmikailstaples Sep 3, 2025
6b156ab
update typo in readme
erinmikailstaples Sep 3, 2025
cb2d378
update README for rquirements.
erinmikailstaples Sep 3, 2025
1f82e9c
update API keys
erinmikailstaples Sep 3, 2025
dd30371
update api server details
erinmikailstaples Sep 4, 2025
7f6d7fa
fix: db uplooad errors and improve authentication
erinmikailstaples Sep 5, 2025
e000265
Fix authentication errors as well as improve readme.
erinmikailstaples Sep 5, 2025
2069890
enviroment validation
erinmikailstaples Sep 5, 2025
63b3f41
update test config
erinmikailstaples Sep 8, 2025
7f091ac
run linters
erinmikailstaples Sep 8, 2025
7753f34
run linters
erinmikailstaples Sep 8, 2025
cc18301
update mentiones of dr. smith + authentication
erinmikailstaples Sep 15, 2025
70a56a7
consistent username references, and update authentication api calls
erinmikailstaples Sep 15, 2025
a04487f
update gitignore, additionally add technical guies and document uploads
erinmikailstaples Sep 15, 2025
ea131bb
update the readme
erinmikailstaples Sep 16, 2025
e071263
Update Document Form, Document Upload and Patient form.
erinmikailstaples Sep 16, 2025
7c6d8ee
udpate ddocument upload and document handli
erinmikailstaples Sep 16, 2025
13fee1f
fixing implementation.
erinmikailstaples Sep 16, 2025
6023d3f
fix react router error
erinmikailstaples Sep 16, 2025
1e7faee
fix document upload and documents
erinmikailstaples Sep 16, 2025
1b38fed
add medical histories
erinmikailstaples Sep 16, 2025
82bc2ec
udpate medical records and make dropdowns opaque.
erinmikailstaples Sep 16, 2025
2bae33f
update forms to include dr. mindy lahiri and add policies
erinmikailstaples Sep 16, 2025
be0dba2
update react routes for the document uploader
erinmikailstaples Sep 16, 2025
a0e2744
add patient form fucntionality
erinmikailstaples Sep 16, 2025
1072c3a
update documents and sample documentation
erinmikailstaples Sep 16, 2025
adc6661
add demo login
erinmikailstaples Sep 16, 2025
25bc93f
Fix PR review issues - auth usernames, Windows compatibility, Galileo…
erinmikailstaples Oct 7, 2025
5357a50
Fix authentication
erinmikailstaples Oct 7, 2025
3ca4274
Merge branch 'main' into add/healthcare-support-portal
erinmikailstaples Oct 7, 2025
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
270 changes: 270 additions & 0 deletions python/rag/healthcare-support-portal/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,270 @@
# =======================
# HEALTHCARE SUPPORT PORTAL
# .gitignore
# =======================

# Logs
logs/
*.log
*.log.*

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
# Python lib directories (but not frontend lib directories)
**/lib/
!frontend/**/lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
.venv*/

# uv
uv.lock
.uv/

# PyCharm
.idea/

# VS Code
.vscode/
*.code-workspace

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# pipenv
Pipfile.lock

# poetry
poetry.lock

# celery
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env.local
.env.development.local
.env.test.local
.env.production.local

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# Database
*.db
*.sqlite
*.sqlite3

# PostgreSQL
postgresql/
pgdata/
data/

# Docker
.dockerignore
docker-compose.override.yml

# MacOS
.DS_Store
.AppleDouble
.LSOverride

# Windows
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
*.stackdump
[Dd]esktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msix
*.msm
*.msp
*.lnk

# Linux
*~

# Temporary files
*.tmp
*.temp
temp/
tmp/

# Editor backups
*.bak
*.swp
*.swo
*~

# Process IDs
*.pid

# Coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# IPython
profile_default/
ipython_config.py

# File uploads (if you implement file upload storage)
uploads/
media/
static/

# Package-specific ignores
packages/*/logs/
packages/*/.env
packages/*/uploads/
packages/*/temp/

# OpenAI cache (if any)
.openai_cache/

# Vector database files (if using local vector storage)
*.faiss
*.index

# Backup files
*.backup
*.bak

# SSL certificates (if any)
*.pem
*.key
*.crt
*.csr

# Local configuration overrides
config.local.py
settings.local.py
local_settings.py

# Test artifacts
.pytest_cache/
test-results/
test-reports/

# Performance profiling
*.prof

# Memory dumps
*.dump

# Core dumps
core.*

# OS generated files
.directory
.fuse_hidden*
.nfs*

# IDE and editor files
*.sublime-project
*.sublime-workspace
.vscode/settings.json
.vscode/tasks.json
.vscode/launch.json
.vscode/extensions.json
.history/

# Claude Code settings
.claude
CLAUDE.md

# Node.js and Frontend
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

# Frontend build outputs
dist/
build/
.react-router/

# Frontend environment files
frontend/.env
frontend/.env.local
frontend/.env.development.local
frontend/.env.test.local
frontend/.env.production.local

# Local environment files per package
packages/auth/.env
packages/patient/.env
packages/rag/.env

# Generated documentation
site/


# test
test_ui_fixes.md
Loading
Loading