Dummy

Dummy authentication provider to disable authentication

You can have a dummy authentication that always accepts basic auth. So you should see this popup:

Screenshot of an 'authentication required' window with username and password fields and 'Cancel' and 'OK' buttons
basic auth popup

But then whatever user or password you type, it will enter Datashare.

Example

docker run -ti ICIJ/datashare -m SERVER \
  --dataDir /home/dev/data \
    --batchQueueType REDIS \
    --dataSourceUrl 'jdbc:postgresql://postgres/datashare?user=dstest&password=test'\
    --sessionStoreType REDIS \
    --authFilter org.icij.datashare.session.YesBasicAuthFilter

Last updated