Skip to content

Docusign Connect is a Django app to instantly connect django project with docusign e-signing platform by APIs. This Package comes with build in admin panel to sign and maintain files & docusign api values can be added by admin panel.

Notifications You must be signed in to change notification settings

deligence-vinit/deligence-django-docusign-connect

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Docusign Connect

Docusign Connect is a Django app to instantly connect django project with docusign e-signing platform by APIs. This Package comes with build in admin panel to sign and maintain files & docusign api values can be added by admin panel.

Quick start

  1. Add "crispy_forms","app" & "docusign" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [ ... 'crispy_forms', 'app', 'docusign', ... ]

  2. Add line : AUTH_USER_MODEL='app.CustomUser' to setting.py

  3. Add line : X_FRAME_OPTIONS = 'ALLOWALL' to setting.py

  4. Include the app URLconf in your project urls.py like this::

    path('', include('app.urls')),

  5. Run pip3 install -e ../docusign_connect to install docusign connect package

  6. Run python manage.py makemigrations to create the migrations.

  7. Run python manage.py migrate to create the app models.

  8. Run python manage.py createsuperuser to create admin username & password to login.

  9. Start the development server and visit http://127.0.0.1:8000/manage/ to manage files & settings.

  10. Visit http://127.0.0.1:8000/form/ to sign document.

About

Docusign Connect is a Django app to instantly connect django project with docusign e-signing platform by APIs. This Package comes with build in admin panel to sign and maintain files & docusign api values can be added by admin panel.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages