App Walkthrough
Ok, lets dive in and save this App before our investors find out. Clone the app:
// ssh
git clone https://github.com/Hendrixer/production-grade-nextjs.git
// https
git clone https://github.com/Hendrixer/production-grade-nextjs.git
// gh cli
gh repo clone Hendrixer/production-grade-nextjs
Don't forget to install those dependencies! I used yarn for this lesson, but you can use NPM.
yarn
npm i
There's a lot to unpack here in our app. Most of the heavy lifting is done, but its that last mile that really matters.
Stack
- Typescript app
- eslint and prettier setup
- Next.js v10
- Node v10+
- MongoDB (can use free hosted one, will cover this later)
What's here
- All UI components and styles that we need are here already, this isn't a intro to react course. My pal Brian has that covered for you.
- All pages are here