I see examples referencing a few parameters for the S3 storage driver for GunDB that look like this:
var Gun = require('gun');
var gun = Gun({
file: 'data.json',
s3: {
key: '', // AWS Access Key
secret: '', // AWS Secret Token
bucket: '' // The bucket you want to save into
}
});
I don't see a parameter to define a subdirectory/path within the S3 bucket, to facilitate sharing the bucket with non-GunDB data. Is there such an option/parameter?