File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 4
4
tasks :
5
5
- init : |
6
6
# Setup Gitpod .env
7
- echo -en "OAUTH_CALLBACK=https://3000-${GITPOD_WORKSPACE_ID}.${GITPOD_WORKSPACE_CLUSTER_HOST}/callback\nOAUTH_CLIENT_ID=${GITPOD_INSTANCE_ID}" > . env
7
+ $GITPOD_REPO_ROOT/.gitpod/scripts/ env-setup.sh
8
8
9
9
# Setup DDev
10
10
$GITPOD_REPO_ROOT/.gitpod/scripts/ddev-download-images.sh
16
16
# Installing Nuxt
17
17
$GITPOD_REPO_ROOT/.gitpod/scripts/nuxt-setup.sh
18
18
command: |
19
+ # Setup Gitpod .env
20
+ $GITPOD_REPO_ROOT/.gitpod/scripts/env-setup.sh
21
+
19
22
# Start DDev
20
23
$GITPOD_REPO_ROOT/.gitpod/scripts/ddev-setup.sh
21
24
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ set -eu -o pipefail
3
+
4
+ echo -en " OAUTH_CALLBACK=https://3000-${GITPOD_WORKSPACE_ID} .${GITPOD_WORKSPACE_CLUSTER_HOST} /callback\nOAUTH_CLIENT_ID=${GITPOD_INSTANCE_ID} " > .env
You can’t perform that action at this time.
0 commit comments