Hello, I'm trying to figure out what to put into m...
# dagster-plus
g
Hello, I'm trying to figure out what to put into my
dagster_cloud.yaml
file, I have more than one project in my "mono-repo" as in
Copy code
analytics
├── business_logic_validation
│   ├── assets
├── business_logic_validation_tests
├── credit_card_policy
│   ├── assets
├── credit_card_policy_tests
├── merchant_categorization
│   ├── assets
├── merchant_categorization_tests
...
do I add them thusly?
Copy code
locations:
  - location_name: business_logic_validation
    code_source:
      package_name: business_logic_validation
    build:
      directory: ./
      registry: <http://764506304434.dkr.ecr.us-west-2.amazonaws.com/branch-deployments-gh-action-test|764506304434.dkr.ecr.us-west-2.amazonaws.com/branch-deployments-gh-action-test>

  - location_name: credit_card_policy
    code_source:
      package_name: credit_card_policy
    build:
      directory: ./
      registry: <http://764506304434.dkr.ecr.us-west-2.amazonaws.com/branch-deployments-gh-action-test|764506304434.dkr.ecr.us-west-2.amazonaws.com/branch-deployments-gh-action-test>
j
yeah, that looks right to me. are you running into issues with it?
g
Not sure yet, just bootstrapping stuff. I’m trying to get the GHA workflow up.