- master
- UI
- cap
$ git checkout -b branchName
$ git branch branchName
$ git checkout branchName
$ git push
$ git pull
git push origin --delete branchName
git branch -d branchName
- Install openssl from here.
- Run below command in the folder where your server file is located (app.js)
openssl genrsa -out privkey.pem 1024
openssl req -new -key key.pem -out csr.pem
openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem