Dating website
install package for client and server
npm --prefix ./server install
npm --prefix ./client install
node ./server/Config/Setup.js #generate 580 users
How to run client-side
cd client
#production mode
npm run startDev #OR
#development mode
npm run startProduc
How to run server-side
cd server
npm run start
create .env file inside server folder and add the following variables
PORT= <port>
HOST= <host>
PROTOCOL= <protocol>
CLIENT_PORT= <port>
CLIENT_HOST= <host>
CLIENT_PROTOCOL= <protocol>
MYSQL_HOST= <host>
MYSQL_PORT= <port>
MYSQL_USER= <user>
MYSQL_PASSWORD= <password>
MYSQL_DATABASE= <database>
opencagedata_API_KEY= <key>
NODEMAILER_EMAIL= <email>
NODEMAILER_PASS= <password>
JWT_KEY= <key>
Home Dark/Light mode
SignIn Dark/Light mode
SignUp Dark/Light mode
Dashboard Dark/Light mode
Profile Dark/Light mode
History Dark/Light mode
Steps