To integrate Jet Admin with your Django project you need to install the Jet Bridgepackage. It will work even with your local application on localhost. Jet Bridge is an open-source plugin available on Github.It will connect to your database and link Jet Admin with your project.
6. Run your Django server. Change into the outer your project directory, if you haven’t already, and run the following command:
1
py manage.py runserver
Copied!
8. Finish installation by opening this link in your browser, where localhost is your Django HOST and 8000 is its PORT.
1
http://localhost:8000/jet_api/register/
Copied!
Jet Django package sets CORS headers for /jet_api/ endpoints. If it conflicts with your CORS headers and you want to deal with it yourself, add the following in settings.py:
JET_CORS_HEADERS = False