Conversation
Defensive check on changeset resolve plus tests
Deploying the required code
Updated unit tests for CORS
Deploy code feature
Enable osm-web API endpoints with auth token
CORS config file fix
Tweak to enable OSM token bridge by default
Change stub user to validate OSM rails models
- Added notes to local development. - Need to add more details on initial development.
Migration logic yet to be written
Added routes for validating the project name and unit tests for the same
removed unnecessary pass statement
Feature local setup
Added detailed deployment architecture and services information to README.
Expand README with deployment architecture and services
Readme updated with steps to run local development
Update README.md
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
MashB
approved these changes
Jul 16, 2026
sujata-m
approved these changes
Jul 16, 2026
Deploying the required code
Updated unit tests for CORS
- Added notes to local development. - Need to add more details on initial development.
Migration logic yet to be written
Added routes for validating the project name and unit tests for the same
removed unnecessary pass statement
Added detailed deployment architecture and services information to README.
Readme updated with steps to run local development
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.
Merge from develop to stage
This pull request introduces several important improvements and updates across the backend, deployment, and documentation. The most significant changes include new database migrations to support custom imagery and fix legacy user records, enhancements to deployment and development workflows, and comprehensive documentation of the OSM proxy contract and system architecture.
Database migrations and data integrity:
a92361f527ef_custom_imagery_and_description.py) to the OSM alembic tree to supportcustom_imagery(as JSONB) and a longerdescriptionfield (up to 10,000 chars) on thetasking_projectstable.f3a7b9c1d2e4_heal_short_tdei_pass_crypt.py) to automatically repair legacy TDEI-provisionedusersrows with too-shortpass_cryptvalues, ensuring compatibility with OSM Rails validations.Deployment and development workflow:
trigger-deploy-on-merge.yml) that triggers deployment when pull requests are merged into key branches (develop,staging,production).docker-compose.local.yml, including database setup and migrations.Documentation and architecture:
README.mdto clearly document the contract the backend proxy must uphold for OSM services, the deployment architecture, and the roles of each service and database.CLAUDE.mdto clarify the enforcement of workspace roles, the OSM proxy layer's routing and authentication, and technical details of the TDEI token bridge and user provisioning.Configuration improvements:
CORS_ORIGINSinapi/core/config.pyto accept both JSON arrays and comma-separated lists, matching deployment practices and improving flexibility; added a note to use thecors_origins_listproperty for parsing. [1] [2]Developer tooling:
.claude/settings.jsonwith new Bash commands for searching key code sections, aiding codebase navigation.