summaryrefslogtreecommitdiffstats
path: root/.devcontainer/build.sh
diff options
context:
space:
mode:
Diffstat (limited to '.devcontainer/build.sh')
-rw-r--r--.devcontainer/build.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/.devcontainer/build.sh b/.devcontainer/build.sh
new file mode 100644
index 00000000..e9de3e8f
--- /dev/null
+++ b/.devcontainer/build.sh
@@ -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 \ No newline at end of file