mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
10 lines
300 B
Bash
10 lines
300 B
Bash
#!/bin/sh
|
|
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.)
|
|
pnpm run build
|
|
pnpm run build:static
|