mirror of
https://github.com/flarum/core.git
synced 2025-07-29 12:40:40 +02:00
14 lines
231 B
Bash
Executable File
14 lines
231 B
Bash
Executable File
#!/usr/bin/env bash
|
|
base=$PWD
|
|
|
|
cd $base
|
|
composer install --prefer-dist --optimize-autoloader --ignore-platform-reqs --no-dev
|
|
|
|
cd "${base}/js/forum"
|
|
npm install
|
|
gulp --production
|
|
|
|
cd "${base}/js/admin"
|
|
npm install
|
|
gulp --production
|