logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git

build.sh (239B)


  1. #!/bin/sh
  2. TARGET="../pleroma" # Where pleroma’s repository is sitting
  3. yarn install -D
  4. rm -rf dist/*
  5. yarn run build
  6. cp dist/* "${TARGET}/priv/static/"
  7. rsync -ra --delete --exclude=static-fe* dist/static/ "${TARGET}/priv/static/static"