thedocks/code-serverx/config/install.sh

26 lines
549 B
Bash
Raw Normal View History

2022-03-02 23:11:56 +00:00
# setup
2022-03-03 21:38:40 +00:00
#install extensions located in /exts/ folder
# code-server@4.0.2 omv
CODE_SERVER="/app/code-server/bin/code-server"
# 4.0.1 n2-plus
#CODE_SERVER="/usr/local/bin/code-server"
2022-03-03 22:36:00 +00:00
2022-03-03 22:42:35 +00:00
for FILE in .vscode/*.vsix
2022-03-03 00:45:17 +00:00
do
2022-03-03 21:38:40 +00:00
$CODE_SERVER --install-extension $FILE
2022-03-03 00:45:17 +00:00
done
2022-03-03 01:54:04 +00:00
2022-03-02 23:11:56 +00:00
# pull useful projects
cd /config/workspace
2022-03-03 00:14:23 +00:00
git clone https://git.quodatum.duckdns.org/apb/vscode-basex.git
git clone https://git.quodatum.duckdns.org/apb/thedocks
git clone https://github.com/Quodatum/xqlint.git
2022-03-03 21:38:40 +00:00
git clone https://git.quodatum.duckdns.org/apb/file-samples.git
2022-03-02 23:11:56 +00:00