Siehe https://vikunja.ramsch.sx/tasks/340 Co-authored-by: Christian Fraß <roydfalk@folksprak.org> Reviewed-on: #1 Co-authored-by: Fenris Wolf <fenris@folksprak.org> Co-committed-by: Fenris Wolf <fenris@folksprak.org>
14 lines
230 B
Bash
Executable file
14 lines
230 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
## core
|
|
tools/ivaldi build
|
|
|
|
## data
|
|
mkdir -p build/data
|
|
cp -r -u -v data/* build/data/
|
|
|
|
## node modules
|
|
node_modules=""
|
|
node_modules="${node_modules} nodemailer"
|
|
cd build && npm install ${node_modules} ; cd -
|