mirror of https://github.com/dapr/docs.git
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:
parent
5c866096d7
commit
aef5ea3acf
|
@ -72,7 +72,7 @@ version: 1
|
|||
common: # optional section for variables shared across apps
|
||||
resourcesPath: ./app/components # any dapr resources to be shared across apps
|
||||
env: # any environment variable shared across apps
|
||||
- DEBUG: true
|
||||
DEBUG: true
|
||||
apps:
|
||||
- appID: webapp # optional
|
||||
appDirPath: .dapr/webapp/ # REQUIRED
|
||||
|
|
Loading…
Reference in New Issue