Skip to content

Commit 31e214c

Browse files
authoredApr 16, 2025··
feat: Add setup_commands to repo_config (#1050)
1 parent bcfb23b commit 31e214c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎src/codegen/git/schemas/repo_config.py

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ class RepoConfig(BaseModel):
2525
base_path: str | None = None # root directory of the codebase within the repo
2626
subdirectories: list[str] | None = None
2727

28+
# Additional sandbox settings
29+
setup_commands: list[str] | None = None
30+
2831
@classmethod
2932
def from_envs(cls) -> "RepoConfig":
3033
default_repo_config = RepositoryConfig()

0 commit comments

Comments
 (0)
Please sign in to comment.