- Install Blitz locally:
npm install -g blitz@0.29.7
(we'll use a pinned version of Blitz for this workshop) - Create new Blitz:
blitz new dotjs-leaderboard
(pick React Hook Form when asked about form choice) - Go to project and start server:
cd dotjs-leaderboard && blitz start
If you visit http://localhost:3000/ and see this, you have successfully started Blitz:
WIN Already at this point, we have a working authentication and session management. Create a user and log in, you'll see 🏆
Congratz! Move on to Section Three