Add debugging in containers for vscode

This commit is contained in:
Christoph Jahn 2019-08-07 12:18:51 +02:00 committed by Christoph Jahn
parent 9ed0c3029f
commit 460caa7823
5 changed files with 230 additions and 0 deletions

12
.devcontainer/build.sh Normal file
View file

@ -0,0 +1,12 @@
#!/bin/bash
cd /app
rm -rf node_modules
/home/wekan/.meteor/meteor npm install
rm -rf .build
/home/wekan/.meteor/meteor build .build --directory
cp -f fix-download-unicode/cfs_access-point.txt .build/bundle/programs/server/packages/cfs_access-point.js
cd .build/bundle/programs/server
rm -rf node_modules
/home/wekan/.meteor/meteor npm install
cd /app