File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed
Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "extensions" : [
3+ " humao.rest-client"
4+ ],
5+ // Use 'onCreateCommand' to run commands as part of container creation.
6+ "onCreateCommand" : " /bin/bash -c .devcontainer/on-create.sh" ,
7+ }
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ echo " on-create start" >> ~ /status
4+
5+ # install dapr cli
6+ wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | /bin/bash
7+
8+ # initialize dapr
9+ dapr init
10+
11+ echo " on-create complete" >> ~ /status
Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ package-lock.json
44vendor /**
55twitter-sentiment-processor /demos /demo2 /viewer /handler
66twitter-sentiment-processor /demos /demo3 /demochart /templates /twitter.yaml
7+ .venv /
You can’t perform that action at this time.
0 commit comments