Request to support Dapr sidecar service development, enabling users to develop and debug Dapr-based projects (e.g., eshopondapr) using Nocalhost.
**What would you like to be added**: Dapr sidecar service development with nocalhost **Why is this needed**: I try to use nocalhost to develop and debug Dapr-based project [eshopondapr ] (https://github.com/dotnet-architecture/eShopOnDapr) ,Below is the file where I configure the category-api service: name: catalog serviceType: deployment containers: - name: catalog-api dev: gitUrl: "" image: mcr.microsoft.com/dotnet/sdk:6.0-bullseye-slim shell: "" workDir: "" storageClass: "" resources: limits: memory: 4Gi cpu: "2" requests: memory: 2Gi cpu: "2" persistentVolumeDirs: [] command: run: - "dotnet" - "dev-certs" - "https" - "--trust;" - "dotnet" - "watch" - "run" - "--urls=http://*:80" - "--project" - "./src/Services/C