Fix template reference (#3194)

Currently the template uses an array for env variables but it's actually a `map[string]string` a6f8c7694d/pkg/standalone/run.go (L75)

Signed-off-by: Joni Collinge <joni@diagrid.io>
This commit is contained in:
Joni Collinge 2023-02-21 16:22:24 +00:00 committed by GitHub
parent 5c866096d7
commit aef5ea3acf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ version: 1
common: # optional section for variables shared across apps common: # optional section for variables shared across apps
resourcesPath: ./app/components # any dapr resources to be shared across apps resourcesPath: ./app/components # any dapr resources to be shared across apps
env: # any environment variable shared across apps env: # any environment variable shared across apps
- DEBUG: true DEBUG: true
apps: apps:
- appID: webapp # optional - appID: webapp # optional
appDirPath: .dapr/webapp/ # REQUIRED appDirPath: .dapr/webapp/ # REQUIRED