mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
8 lines
239 B
Bash
8 lines
239 B
Bash
#!/bin/bash
|
|
|
|
# install only production dependencies using the --no-dev option
|
|
php composer.phar install --no-dev --prefer-dist --no-ansi --no-interaction --no-progress --ignore-platform-reqs
|
|
|
|
# build all production UI assets
|
|
npm run build
|