Django
In this section you will learn how to connect Django to Jet Admin
Last updated
In this section you will learn how to connect Django to Jet Admin
Last updated
To integrate Jet Admin with your Django project, you need to install the Jet Bridge package. 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.
Self-hostedThis is the quickest way to install Jet Admin for Django-based projects. Installed in the same way as most Django packages.
Python 3.4+
Django 1.11+
localhost or web server with external IP
For installation of Django, follow the steps provided in the article.
1. Download and install the latest version of Jet Bridge for Django:
2. Add jet_django
application to the INSTALLED_APPS
settings inside settings.py file (your Django project):
3. Set JET_PROJECT
and JET_TOKEN
inside settings.py file:
Jet Token is automatically generated for each project, you can find it in the settings.
4. Add a URL pattern to the urls.py file. Remember to import the path and include:
If you use Django < 2.0:
5. Run your Django server. Change into the outer project directory, if you haven’t already, and run the following command:
6. Finish the installation by opening this link in your browser, where localhost is your Django HOST and 8000 is its PORT.
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