Hi all, I'm trying to use the `GitRepository` sour...
# ask-community
s
Hi all, I'm trying to use the
GitRepository
source for my flow deployments but now realise my mistake as I need to both
git clone
and
pip install
my package. What's the correct way to clone and install my deployments? The docs don't provide examples for this sort of flow.
I'm doing this in my deployment script:
Copy code
Flow.from_source(
        source=GitRepository(source_url),
        entrypoint=(
            "src/fpga_automation/server/flows/"
            "kasli_release.py:kasli_soc_release_flow"
        ),
    ).deploy(blah)