Add workspace selection and cross-dialect migrations#275
Open
Mng-dev-ai wants to merge 1 commit intomainfrom
Open
Add workspace selection and cross-dialect migrations#275Mng-dev-ai wants to merge 1 commit intomainfrom
Mng-dev-ai wants to merge 1 commit intomainfrom
Conversation
f0cc277 to
75b10a8
Compare
- Allow users to select a local folder or clone a Git repo as workspace - workspace_path is optional — users can start chatting without one - Docker provider mounts workspace as volume when provided - Host provider works directly in the selected folder - Landing page UI with workspace selector, recent workspaces, and Git clone - Add migration_helpers (uuid_server_default, now_server_default) for PG/SQLite - Update env.py render_item to auto-generate cross-dialect migrations - Reset Alembic to single initial migration supporting both dialects - Remove _create_sqlite_tables() — Alembic handles SQLite directly
75b10a8 to
1c41ef3
Compare
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.
Summary
workspace_pathis optional — users can start chatting immediately without selecting a foldermigration_helpers(uuid_server_default,now_server_default) so migrations run on both PostgreSQL and SQLite_create_sqlite_tables()from app startup — Alembic handles SQLite directly nowTest plan
claudex.db, relaunch — verify Alembic creates tables from scratchalembic upgrade head— verify migration applies cleanly