13 lines
No EOL
189 B
Bash
Executable file
13 lines
No EOL
189 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
# install php dependencies
|
|
composer install
|
|
|
|
# copy backend
|
|
cp -rv src/{backend.php,config.sample.php} dist/
|
|
|
|
# build Javascript frontend
|
|
npm install
|
|
gulp build
|
|
|
|
echo "done" |