git clone &&
cd &&
npm install &&
npm start;
cp .example.config.js config.js
CREATE database project1;
\c project1;
DELETE from users;
CREATE TABLE users(
firstName text,
lastName text,
npiNumber text,
businessAddress text,
telephoneNumber text,
emailAddress text
);
INSERT INTO users VALUES ('michael', 'dimmitt', '82138','2312 baymeadows way, jacksonville, fl','9022006567','[email protected]');
use project1
db.createCollection("users")
https://www.youtube.com/watch?v=fIeIzHMC4BQ https://medium.com/@rksmith369/how-to-deploy-mern-stack-app-on-aws-ec2-with-ssl-nginx-the-right-way-e76c1a8cd6c6
cd /var/www
pm2 start express.js