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
Raw Normal View History

2022-12-04 01:24:12 +00:00
#!/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
2022-12-24 15:22:26 +00:00
cd ./backend && ./build.sh decky,encrypt && cd ..
2022-12-04 01:24:12 +00:00
cd ./src/usdpl_front && ./rebuild.sh decky encrypt && cd ../..
npm install && npm run build
unset USDPL_ENCRYPTION_KEY