React/Next.js Django Auth Template
Topics
2. Make sure YOUR github account is selected in the dropdown and name your project
3. Clone your new repo to your local machine
4. Go to the NEXT section
Starting the Project
- Create a Firebase project and set up authentication. Use these videos as a refresher if needed.
- Create a
.env
file at the root of the project
- Copy/Paste the contents of the
.env.sample
file to your newly created .env
file.
- Copy over all of your Firebase values into the
.env
file.
- Open the
package.json
file and change the name
property to the name of your application, and author
to your name.
- From your command line, be in the root directory and run
npm install
OR npm i
for short.
- Next, run
npm run prepare
. This command sets up husky to track eslint errors on commit that will make your deploy fail on Netlify.
- To start your application, run
npm run dev
. THIS IS THE COMMAND YOU WILL USE TO RUN YOUR DEVELOPMENT SERVER FROM NOW ON.
- Open http://localhost:3000 with your browser.
If you see this, you are set to go!
You can start editing the page by modifying pages/index.js
. The page auto-updates as you edit the file.
NOTES:
- If you see the following error, you did not follow all the setup steps correctly and failed to add your Firebase creds. Go back and do that NOW.
Learn More about Next.js
To learn more about Next.js, take a look at the following resources: