This is a DNS manager Django app.
The following lines creates a Python3 virtualenv and installs
django-dnsmanager inside.
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install django-dnsmanager- Polymorphic models based on Django Polymorphic ;
- Integration with Django Contrib Admin and AdminDocs ;
- Integration with Django Rest Framework ;
- Generation of ready to use zone files.
This app targets Django 2.2 (last LTS and current Debian version (from Debian 11 Bullseye)) and 3.1. It runs on Python 3.6 to 3.9.
We assume this package is installed in your Python 3 environment.
Clone the project and go to example directory.
Now we need to create the database tables and an admin user. Run the following and follow the instructions:
$ ./manage.py migrate
$ ./manage.py createsuperuserNow you may run the Django development server:
$ ./manage.py runserverYou should then be able to open your browser on http://127.0.0.1:8000 and see this app running.
Django-dnsmanager uses the same license as Django (BSD-like) because we believe in open development. Please see LICENSE file for more details.