Skip to content

Commit 20b47c4

Browse files
authored
Merge pull request #1 from brendanm2025/brendanm2025-gitpod-setup-edits
Update .gitpod.yml
2 parents 22df68e + 37c9641 commit 20b47c4

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.gitpod.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,20 @@ image:
1010
tasks:
1111
- name: Prepare development environment
1212
init: |
13+
echo "running: mkdir -p .vscode" 2>&1 | tee -a setup.log
1314
mkdir -p .vscode
15+
echo "running: cp gitpod/settings.json .vscode/settings.json" 2>&1 | tee -a setup.log
1416
cp gitpod/settings.json .vscode/settings.json
15-
git fetch --tags
16-
python -m pip install -ve . --no-build-isolation -Ceditable-verbose=true
17-
pre-commit install --install-hooks
17+
echo "running: git fetch --tags" 2>&1 | tee -a setup.log
18+
git fetch --tags 2>&1 | tee -a setup.log
19+
echo "running: python -m pip install -ve . --no-build-isolation -Ceditable-verbose=true" 2>&1 | tee -a setup.log
20+
python -m pip install -ve . --no-build-isolation -Ceditable-verbose=true 2>&1 | tee -a setup.log
21+
echo "running: pre-commit install --install-hooks" 2>&1 | tee -a setup.log
22+
pre-commit install --install-hooks 2>&1 | tee -a setup.log
1823
command: |
19-
python -m pip install -ve . --no-build-isolation -Ceditable-verbose=true
20-
echo "✨ Pre-build complete! You can close this terminal ✨ "
24+
echo "running: python -m pip install -ve . --no-build-isolation -Ceditable-verbose=true" 2>&1 | tee -a setup.log
25+
python -m pip install -ve . --no-build-isolation -Ceditable-verbose=true 2>&1 | tee -a setup.log
26+
echo "✨ Pre-build complete! You can close this terminal ✨ " 2>&1 | tee -a setup.log
2127
2228
# --------------------------------------------------------
2329
# exposing ports for liveserve

0 commit comments

Comments
 (0)