<aside>

🌐 Check out more at 99foldai.com ☕ Have a virtual coffee with me 📌 Follow me on Linkedin: Matthew Malishev

</aside>

Free resources, guides, and walkthroughs by Matt Malishev Bulletproof Agent and Automation Systems in Marketing, Branding, and Design at 99foldai.com


This is a multi part series on creating, building, and deploying production grade web apps and microSaaS

Overview

Set up a consistent Next.js app project environment, install Node.js, Git, GitHub CLI, Vercel, and Cursor, then use a setup script to create new apps. I also show how to auto-commit changes with a quick push command and view your app locally or live on Vercel.

What you’ll achieve here

Requirements

# Check Node.js
node --version
# If not installed: brew install node

# Check Git
git --version
# If not installed: brew install git

# Check GitHub CLI
gh --version
# If not installed: brew install gh
# Then authenticate: gh auth login

# Check npm
npm --version
# Comes with Node.js

For GitHub CLI: