chore: use monorepo organization
This commit is contained in:
parent
deaf7d6ecc
commit
a687827f7e
1099 changed files with 8184 additions and 11535 deletions
26
packages/server/bin/lamassu-admin-server-entrypoint.sh
Normal file
26
packages/server/bin/lamassu-admin-server-entrypoint.sh
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#!/usr/bin/env bash
|
||||
set -e
|
||||
|
||||
CERT_FILES=(
|
||||
/lamassu-data/certs/{Lamassu_CA,Lamassu_OP,Lamassu_OP_Root_CA}.pem
|
||||
/lamassu-data/certs/Lamassu_OP_Root_CA.srl
|
||||
/lamassu-data/private/{Lamassu_OP,Lamassu_OP_Root_CA}.key
|
||||
)
|
||||
|
||||
if ! (( ${#CERT_FILES[@]} == $(ls "${CERT_FILES[@]}" 2>/dev/null | wc -l) )); then
|
||||
echo "Some certificates are missing. Retrying in 5 seconds"
|
||||
sleep 5
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Update certs on alpine"
|
||||
cp /lamassu-data/certs/Lamassu_CA.pem /usr/local/share/ca-certificates
|
||||
cp /lamassu-data/certs/Lamassu_OP_Root_CA.pem /usr/local/share/ca-certificates
|
||||
update-ca-certificates
|
||||
|
||||
if [ "${LAMASSU_DEV_MODE}" = "true" ]; then
|
||||
echo "Starting in dev mode"
|
||||
node /lamassu-server/bin/lamassu-admin-server --lamassuDev
|
||||
else
|
||||
node /lamassu-server/bin/lamassu-admin-server
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue