Skip to content
Draft
Changes from all commits
Commits
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
27 changes: 27 additions & 0 deletions MODAL_SETUP.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Modal Image Build Update

This PR proposes updating the repository's setup commands in the Codegen platform to use `uv_sync` instead of `uv_pip_install` for Modal image builds, as recommended in the Modal August 2025 update.

## Current Setup Commands

```bash
uv sync && uv pip install -e .
```

## Proposed Setup Commands

```bash
uv sync && uv pip install -e .
```

Note: The current setup commands already use `uv sync`, which is the recommended approach mentioned in the Modal August 2025 update. The repository is already using the recommended configuration.

## Benefits

- Faster container builds with `uv_sync`
- Better synchronization between local project and Modal image
- Improved development experience

## Implementation

This change should be made in the repository configuration in the Codegen platform at https://codegen.com/repos/codegen/setup-commands.