First you need to generate a pair of keys. Generate the private as follows:
openssl genrsa -out privatekey.pem 4096Then generate the public one using the private generated previously:
openssl req -new -x509 -key privatekey.pem -out publickey.cerThen proceed to install node dependencies, execute the following in project root directory:
npm installFinally run:
npm start
Keys must be created first to avoid errors in app execution.