mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-03 23:09:18 +02:00
9 lines
300 B
Bash
9 lines
300 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# install only production dependencies using the --no-dev option
|
|
composer install --no-dev --prefer-dist --no-ansi --no-interaction --no-progress --ignore-platform-reqs
|
|
|
|
# build all production static assets (css, js, images, icons, fonts, etc.)
|
|
npm run build
|
|
npm run build:static
|