You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
224 B

#!/usr/bin/env bash
set -o errexit
set -o nounset
mkdir -p backend/client
cd frontend
export PUBLIC_PATH="/static/_nuxt/"
yarn build
cp -r dist ../backend/client/
cd ../backend
poetry run task collectstatic
poetry build