We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd2ea50 commit 48cee74Copy full SHA for 48cee74
deployment/kubernetes/backstage/create-backstage.sh
@@ -15,7 +15,7 @@ helm -n backstage upgrade --install postgres postgres-0.1.0.tgz
15
# Install backend app dependencies using yarn
16
cd $CODESPACE_VSCODE_FOLDER/backstage-app/backstage101
17
yarn install --frozen-lockfile
18
-yarn tsc from backstage101 folder
+yarn tsc
19
20
# Build backstage backend app with the latest app-config.yaml file
21
cd $CODESPACE_VSCODE_FOLDER/backstage-app/backstage101/packages/backend
@@ -33,3 +33,6 @@ docker push localhost:5001/backstage:0.1.0
33
helm package deployment/kubernetes/backstage/helm/
34
helm -n backstage upgrade --install backstage backstage-0.1.0.tgz
35
36
+# Setup a port-forward from backstage:80 to localhost:8000
37
+kubectl -n backstage port-forward svc/backstage 8000:80
38
+
0 commit comments