11 lines
173 B
Bash
Executable file
11 lines
173 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
# install php dependencies
|
|
composer install
|
|
|
|
# copy backend
|
|
cp -rv src/{backend,config.sample}.php dist/
|
|
|
|
# build Javascript frontend
|
|
npm install
|
|
gulp build
|