yarn install
-
Generate the Key Pair:
openssl genrsa -out private_key.pem 2048
-
Extract the Public Key
openssl rsa -in private_key.pem -pubout -out public_key.pem
-
Secure the Private Key with passphrase (optional but highly recommended)
openssl rsa -aes256 -in private_key.pem -out private_key_protected.pem
yarn start