Skip to content
Snippets Groups Projects
  • Jo Sama's avatar
    97100674
    First iteration of document dealer · 97100674
    Jo Sama authored
    The first iteration supports delivery of documents from DFØs document
    service, directly to the users browser. The document is selected by a
    set of query parameters, and is simply displayed inline.
    
    This version does not include authentication or authorization.
    97100674
    History
    First iteration of document dealer
    Jo Sama authored
    The first iteration supports delivery of documents from DFØs document
    service, directly to the users browser. The document is selected by a
    set of query parameters, and is simply displayed inline.
    
    This version does not include authentication or authorization.

Document Dealer deals documents

Document Dealer collects documents from DFØs document service, and presents the documents for the requestors in-line. The requestors visits DD by clicking an URL in e.g. Tableau.

Example usage:

Run Document Dealer:

$ poetry shell
$ poetry install
$ cp config.example.yaml config.yaml
$ vim config.yaml
$ DOCUMENT_DEALER_CONFIG=config.yaml uvicorn document_dealer.main:app --reload

Collect a document:

$ xdg-open 'http://127.0.0.1:8000/document?firm=72&doc_id=6bdf3104-88e3-4707-9398-9f4175b58939&doc_type=INNGFAKTVEDL&revision=0'

Running tests:

$ python -m unittest