disposable-mailbox-2/build.sh
2016-09-14 20:27:18 +02:00

15 lines
No EOL
227 B
Bash
Executable file

#!/bin/bash -e
# install php dependencies
composer install
# copy backend
cp -rv src/{backend.php,config.sample.php} dist/
# install javascript dependencies
npm install
# build Javascript frontend
npm run build
echo "done"