Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 1.03 KB

README.md

File metadata and controls

42 lines (27 loc) · 1.03 KB

DDP frontend

License: AGPL v3 Code coverage badge

Installation instructions

yarn install

Run the development server

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.

Development convention

Refer to this guide