@@ -4,8 +4,9 @@ Provides a way to connect to Gitpod Classic workspaces within the JetBrains Tool
4
4
5
5
## How to Develop with Gitpod Flex
6
6
7
+ - Start an environment on [ Gitpod Flex] ( https://app.gitpod.io ) with current repository
7
8
- Connect to the environment via ** JetBrains Gateway** (because we want to restart Toolbox) SSH feature (user: gitpod_devcontainer)
8
- - Copy flex-sync.sh locally and chmod +x
9
+ - Copy flex-sync.sh locally and chmod +x, the script is written for macOS, please adjust it if you're using other OS
9
10
- Exec ` ./flex-sync.sh <env_host> `
10
11
11
12
``` sh
@@ -22,28 +23,37 @@ LOCAL_DIR="$HOME/Library/Caches/JetBrains/Toolbox/plugins"
22
23
REMOTE_DIR=" /workspace/gitpod/components/ide/jetbrains/toolbox/build/flex"
23
24
DEVCONTAINER_HOST=" gitpod_devcontainer@$REMOTE_HOST "
24
25
25
- ssh $DEVCONTAINER_HOST " apt-get update && apt-get install -y rsync inotify-tools "
26
+ echo " Preparing... "
26
27
27
- echo " Watching for changes in $DEVCONTAINER_HOST : $REMOTE_DIR "
28
+ ssh $DEVCONTAINER_HOST " apt-get update && apt-get install -y rsync inotify-tools " > /dev/null
28
29
29
- ssh $DEVCONTAINER_HOST " inotifywait -m -r -e modify,create,delete,move $REMOTE_DIR " | \
30
- while read path action file; do
31
- echo " [$( date ' +%Y-%m-%d %H:%M:%S' ) ] Change detected: $action $file "
32
- # Make sure remote is build
33
- sleep 3
30
+ function sync_and_restart() {
34
31
rsync -avz --delete " $DEVCONTAINER_HOST :$REMOTE_DIR /" " $LOCAL_DIR /"
35
-
36
- echo " [$( date ' +%Y-%m-%d %H:%M:%S' ) ] Change synced"
37
32
pkill -f ' JetBrains Toolbox' || true
38
33
echo debugClean > $HOME /Library/Logs/JetBrains/Toolbox/toolbox.log
39
34
code $HOME /Library/Logs/JetBrains/Toolbox/toolbox.log
40
35
# In case Toolbox refuses to start
36
+ echo " Restarting Toolbox in 3 seconds"
41
37
sleep 3
42
38
open /Applications/JetBrains\ Toolbox.app
39
+ }
40
+
41
+ echo " Initing..."
42
+
43
+ sync_and_restart
44
+
45
+ echo " Watching for changes in $DEVCONTAINER_HOST :$REMOTE_DIR "
46
+
47
+ ssh $DEVCONTAINER_HOST " inotifywait -m -r -e modify,create,delete,move $REMOTE_DIR " | \
48
+ while read path action file; do
49
+ echo " [$( date ' +%Y-%m-%d %H:%M:%S' ) ] Change detected: $action $file "
50
+ # Make sure remote is build
51
+ sleep 3
52
+ sync_and_restart
43
53
done
44
54
```
45
55
46
- ## How to Develop
56
+ ## How to Develop locally
47
57
48
58
### Requires
49
59
- Java 21
0 commit comments