git clone https://github.com/dheerajck/Django-Auth0.git
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
Create an auth0 Regular Web Application and configure Application URIs,
for running in localhost use the below Application URIs
Allowed Callback URLs: http://127.0.0.1:8000/complete/auth0/, http://localhost:8000/complete/auth0/
Allowed Logout URLs:http://127.0.0.1:8000/, http://localhost:8000/
V - Create a new .env file on the root directory based on .env.example and update the variables in the .env file
cp .env.example .env
python manage.py migrate
python manage.py runserver
Now open your web browser and navigate to http://localhost:8000/ to view the application.
That's it! You should now be able to run the Django server and start working on your project. Don't forget to update the .env file with your own environment variables before running the server.