yarn install
You will need to run the Django backend. Once that is running, specify its URL in the .env
under
NEXT_PUBLIC_BACKEND_URL=<url of django backend>
Next, generate a security secret using https://generate-secret.vercel.app/32
and set it in
NEXTAUTH_SECRET=<secret>
Finally, select an available port on your system and define the URL for this frontend
NEXTAUTH_URL=http://localhost:<port>
Now you can start the application
yarn dev
Open http://localhost:<port>
with your browser to see the result.
Refer to this guide