Metadata-Version: 2.1
Name: ckanext-fpx
Version: 0.6.4.post1
Author-email: DataShades <datashades@linkdigital.com.au>, Sergey Motornyuk <sergey.motornyuk@linkdigital.com.au>
Maintainer-email: DataShades <datashades@linkdigital.com.au>
License: AGPL
Project-URL: Homepage, https://github.com/DataShades/ckanext-fpx
Keywords: CKAN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyjwt

# ckanext-fpx

CKAN adapter for FPX service

## Requirements

- Configured and running FPX

## Installation

To install ckanext-fpx:

1. Activate your CKAN virtual environment

1. Install the ckanext-fpx Python package:

		pip install ckanext-fpx

1. Add ``fpx`` to the ``ckan.plugins`` setting in your CKAN config file

1. Add ``fpx.client.secret`` and ``fpx.service.url`` config options

## Config settings

    # Client secret generated by FPX
    # (required).
	fpx.client.secret = 123abc

    # Name corresponding to the secret. Required only for file-streaming.
    # (optional).
	fpx.client.secret = client-name-for-123abc-secret


    # URL of the running FPX service
    # (required).
    fpx.service.url = http://0.0.0.0:8000
