Moving this from <#C01U954MEER|dagster-support> to...
# deployment-ecs
y
Moving this from #dagster-support to here since this channel seems more relevant: I have this docker_deplpoy working in ECS. I would like to use scaffold generated code instead of repo.py but am not sure how to migrate. I can get the scaffold code working find with
dagster dev
but I am not sure how to get that to run in place or repo.py. Anyone have any tips on this.
This seems to be the magic change
CMD ["dagster", "api", "grpc", "-h", "0.0.0.0", "-p", "4000", "-m", "workDir.moduleDir"]
So for this
project_fully_features
project it would be:
CMD ["dagster", "api", "grpc", "-h", "0.0.0.0", "-p", "4000", "-d", "project_fully_featured", "-m", "project_fully_featured"]
j
Yep that looks correct