Conversation
…nto fix-feedback
- Add app core files (`app.py`, `db_utils.py`, `diff_utils.py`) - Add documentation: `README.md` - Add database connection scripts: `connect.sh`, `connect.ps1` - Add CI GitHub workflow for CI checks - Add Python requirements for the project - Initial `.gitignore` for OpenRAG-DB-viewer - Remove obsolete `systems/docgpt/.env.example` - Add new `systems/docgpt/.env.test` for test configuration
PR Change LogChanged Files SummaryOverall: 18 files changed, 1689 insertions(+), 10 deletions(-) Files Changed
Changes by Directory
WarningsLarge changes detected in:
Updated: 2026-04-07T19:15:15.425Z |
Made-with: Cursor
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. |
|
This pull request was closed because it has been stale for 14 days with no activity. Feel free to reopen if you'd like to continue working on it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request sets up the foundational infrastructure and documentation for the OpenRAG Responses DB Viewer project. It introduces a comprehensive README, a Python and database-focused
.gitignore, cross-platform SSH tunnel launch scripts, and a GitHub Actions workflow for CI and automated releases. These changes collectively enable easy local or remote (EC2) usage, robust CI, and clear onboarding for new users.Project Documentation and Onboarding:
README.mddescribing project features, setup instructions, usage scenarios (local and EC2), environment variables, manual test steps, and project structure to help users and contributors quickly understand and use the DB viewer.Development Environment Setup:
.gitignorefile to exclude Python bytecode, virtual environments, database files, and environment files from version control.Connection Scripts for EC2 Integration:
connect.sh(Linux/macOS) andconnect.ps1(Windows) scripts to automate SSH tunneling to an EC2 PostgreSQL instance, set environment variables, and launch the Streamlit app, streamlining secure remote access for production data. [1] [2]Continuous Integration and Release Automation:
.github/workflows/ci.ymlto run smoke tests (import checks, SQL validation, diff utilities) on push/pull request, and on push tomain, auto-generate a timestamped GitHub Release with quick-start instructions.