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.

11 lines
192 B

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