This repository has been archived on 2024-04-22. You can view files and clone it, but cannot push or open issues or pull requests.
caylon/build.sh

13 lines
350 B
Bash
Executable file

#!/bin/bash
export USDPL_ENCRYPTION_KEY=$(openssl enc -aes-256-cbc -k caylon -pbkdf2 -P -md sha1 | awk -F= '{if ($1 == "key") print $2}')
echo USDPL key: $USDPL_ENCRYPTION_KEY
cd ./backend && ./build.sh decky,encrypt && cd ..
cd ./src/usdpl_front && ./rebuild.sh decky encrypt && cd ../..
npm install && npm run build
unset USDPL_ENCRYPTION_KEY