Skip to content

Commit

Permalink
refactor(gitpod): dev ready in first terminal
Browse files Browse the repository at this point in the history
  • Loading branch information
StoneyJackson committed Feb 16, 2024
1 parent 457a505 commit 5bc0c6c
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,22 @@
image: gitpod/workspace-full:latest

tasks:
- name: Install PLCC
- name: Install Dev Environment
command: |
echo "INSTALLING latest JAVA (a PLCC dependency)"
sdk install java < /dev/null
echo ""
echo "INSTALLING PLCC in $GITPOD_REPO_ROOT/src"
echo 'export LIBPLCC="$GITPOD_REPO_ROOT/src"
export PATH="$LIBPLCC:$PATH"
' >> "$HOME/.bashrc"
sdk install java < /dev/null
exec bash
- name: Install developer tools
command: |
echo ""
echo "INSTALLING reuse (for licenses: https://reuse.software/)"
pip install --upgrade pip
pip install pipx
pipx install reuse
echo ""
echo "INSTALLING ag (for searching: https://github.com/ggreer/the_silver_searcher)"
sudo apt-get update
sudo apt-get install silversearcher-ag
sudo apt-get install silversearcher-ag
exec bash

0 comments on commit 5bc0c6c

Please sign in to comment.