Skip to content
This repository has been archived by the owner on Mar 27, 2020. It is now read-only.

blueflag/moneypenny-s3-storage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

moneypenny-s3-storage

S3 storage plugin for moneypenny

moneypenny-s3-storage

Authentication Service ( S3 storage provider for moneypenny authentication service )

Circle CI Coverage Status

Moneypenny acts as an authentication service that offers multiple authentication strategies to a backend service and sends a JSON web token(JWT) encripted using a shared secret as a response.

Related Projects

Sample Useage

Sample Implementation Code

var s3MoneyPennyStore = require('moneypenny-s3-storage')({
    bucket: 'TEST-BUCKET'
})
var moneypennyServer = require('moneypenny')({
    storageProvider: s3MoneyPennyStore,
    loginUrl: '/login.html',
    secretOrPrivateKey: 'top_secret'
});