Metadata-Version: 2.1
Name: django-willing-zg
Version: 0.3.2
Summary: 
Author: Bequest, Inc.
Author-email: oss@willing.com
Requires-Python: >=3.7,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: cryptography (>=3.1,<4.0)
Requires-Dist: django (>=3.0.8,<4.0.0)
Requires-Dist: djangorestframework (>=3.11.0,<4.0.0)
Requires-Dist: djangorestframework-simplejwt (>=4.4.0,<5.0.0)
Requires-Dist: simplejwt-extensions (>=0.2.1,<0.3.0)
Requires-Dist: zygoat-django (>=0.3,<1.0)
Description-Content-Type: text/markdown

# django-willing-zg
A Django app to hold common utilities for Zygoat-managed applications


## What it does
`willing_zg` provides a means to define frontend configuration in the django settings and an API endpoint to make that configuration accessible.

## Usage
1. Add "willing_zg" to `INSTALLED_APPS` in the django settings

2. Define `ZYGOAT_FRONTEND_META_CONFIG` in the django settings

    ZYGOAT_FRONTEND_META_CONFIG = { "example_frontend_config": "example_value" }

3. Include the willing_zg URLconf in your project's urls.py:

    path('api/zygoat/', include('willing_zg.urls')),

