Using mern-infrastructureto Create MERN-Stack Projects in the Future Here's the process to create a new MERN-Stack project that starts with the infrastructure code:

Clone the mern-infrastructure repo: git clone

Note that the folder created will be same as instead of mern-infrastructure

cd Install the Node modules: npm i Create a .env (touch .env) and add entries for DATABASE_URLand SECRET Update the "name": "mern-infrastructure"in package.json to the name of your project. Create a new repo on your personal GH account. Copy the new GH repo's URL. Update the remote's URL: git remote set-url origin Push for the first time: git push -u origin main Have fun coding your new project and don't forget to make frequent commits!