Django based phonebook for Granstream telephones.
Project description
# django-sip-phonebook A django-powered central phonebook and provisioning server for Grandstream telephones
Quick start
Add “phonebook” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'phonebook', ]
Include the phonebook URLconf in your project urls.py like this:
url(r'^phonebook/', include('phonebook.urls')),
Run python manage.py migrate to create the phonebook models.
Start the development server and visit http://127.0.0.1:8000/admin/ to setup phone book entries (you’ll need the Admin app enabled).
Setup your Grandstream IP phone to fetch it’s phonebook from http://127.0.0.1:8000 and verify you can call the contacts you added.