<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
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.
Node.js npm ghgit config --global user.name and user.email)gh) installed and authenticated gh auth login./setup-nextjs.sh my-new-app "My app description” to always build the same setup files for your app# 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:
gh auth login (follow the prompts)
gh asks for authentication, run gh auth login first (and choose GitHub.com -> SSH option).