Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
a1f2b23
Add Streamlit, backend processing
PaulHuatingSun Apr 11, 2025
59ade67
Update more pages, add safeguard, add additional filtering, add more …
PaulHuatingSun Apr 17, 2025
b9b4d33
Update structure
PaulHuatingSun Apr 17, 2025
6967281
Update filter logic
PaulHuatingSun Apr 17, 2025
f809a56
Update .gitignore
PaulHuatingSun Apr 17, 2025
53f43b0
Create requirement.txt
PaulHuatingSun Apr 17, 2025
e84d0b7
update UI, add prompt engineering
PaulHuatingSun Apr 22, 2025
9aa9832
Update File names
PaulHuatingSun Apr 26, 2025
b80f263
Update README.md
LoadingBFX May 27, 2025
6cafe96
Update README.md
LoadingBFX May 27, 2025
e263942
init
LoadingBFX May 28, 2025
f2e7076
Delete files
LoadingBFX May 28, 2025
bad52d8
init
LoadingBFX May 28, 2025
49f5e7d
update gitignore
LoadingBFX May 28, 2025
9208a82
update xml_auto_headings_analysis.py
LoadingBFX May 30, 2025
f57ba39
add xml files
LoadingBFX May 30, 2025
087a5c9
docs: update project documentation and changelog
LoadingBFX Jun 2, 2025
b0be252
Update GitHub Pages deployment to use dev branch
LoadingBFX Jun 2, 2025
c69c71a
Update frontend dependencies
LoadingBFX Jun 2, 2025
24a977e
Update GitHub Pages deployment configuration
LoadingBFX Jun 2, 2025
31a9164
Trigger deploy to gh-pages
LoadingBFX Jun 2, 2025
2f85893
Move deploy workflow to correct location
LoadingBFX Jun 2, 2025
8f48af6
Trigger GitHub Actions deploy
LoadingBFX Jun 2, 2025
e4465fd
init
LoadingBFX Jun 2, 2025
b1766ed
update .gitignore
LoadingBFX Jun 2, 2025
facd3fc
update .gitignore
LoadingBFX Jun 2, 2025
3e01684
update .gitignore
LoadingBFX Jun 2, 2025
b4c2c41
Update README.md
LoadingBFX Jun 2, 2025
a6c30aa
Merge branch 'dev' of https://github.com/LoadingBFX/RegHealth-Navigat…
LoadingBFX Jun 2, 2025
79f4dd1
docs: add frontend guide, mv github instruction
LoadingBFX Jun 2, 2025
98cf257
docs: update README.md
LoadingBFX Jun 2, 2025
f27887b
Revert dev branch to 542256b but keep docs and README.md
LoadingBFX Jun 2, 2025
8ff99db
fix: rm Select XML Files button
LoadingBFX Jun 2, 2025
b2d7ed6
fix: rm Select XML Files button
LoadingBFX Jun 2, 2025
7b8bace
chore: unify workflow, only deploy via deploy.yml on dev/main
LoadingBFX Jun 3, 2025
e9fb56e
feat: add simple chat endpoint with documentation
LoadingBFX Jun 3, 2025
a3b87ca
feat: implement chat functionality
LoadingBFX Jun 3, 2025
d4a885b
feat: add Federal Register document downloader with program type dete…
LoadingBFX Jun 5, 2025
d22fe1f
Merge pull request #1 from LoadingBFX/feat/federal-register-downloader
LoadingBFX Jun 5, 2025
4becc02
feat: add sample data
LoadingBFX Jun 5, 2025
6223cce
feat: update file existence check logic
LoadingBFX Jun 5, 2025
d6247b0
feat: optimize federal register API query parameters and add document…
LoadingBFX Jun 6, 2025
1f1bf71
merge: feat/federal-register-downloader into dev
LoadingBFX Jun 6, 2025
25004d7
docs: merge federal register documentation files and update content
LoadingBFX Jun 6, 2025
3bdaaf5
refactor: update frontend UI and remove unused components
LoadingBFX Jun 6, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
41 changes: 41 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- dev
- main

jobs:
build-and-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: front/package-lock.json

- name: Install Dependencies
run: |
cd front
npm ci

- name: Build
run: |
cd front
npm run build

- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: front/dist
clean: true
single-commit: true
186 changes: 186 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,187 @@
.env
__pycache__/
.DS_Store
.vscode
.cursor
.gitmodules
.nvmrc
.prettierrc
.prettierignore
.zip
claude*
*.pdf

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

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

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# UV
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
#uv.lock

# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock

# pdm
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
#pdm.lock
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
# in version control.
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
.pdm.toml
.pdm-python
.pdm-build/

# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

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

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

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

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# PyCharm
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

# Ruff stuff:
.ruff_cache/

# PyPI configuration file
.pypirc
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20
Loading