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

  1. #!/usr/bin/env bash
  2. set -o errexit
  3. set -o nounset
  4. mkdir -p backend/client
  5. cd frontend
  6. export PUBLIC_PATH="/static/_nuxt/"
  7. yarn build
  8. cp -r dist ../backend/client/
  9. cd ../backend
  10. poetry run task collectstatic
  11. poetry build