mirror of
https://github.com/amark/gun.git
synced 2025-03-30 15:08:33 +00:00
7 lines
286 B
JavaScript
7 lines
286 B
JavaScript
var gun = require('gun')({
|
|
s3: (process.env.NODE_ENV === 'production')? null : require('../../test/shotgun') // replace this with your own keys!
|
|
});
|
|
|
|
gun.set({ name: "Mark Nadal", email: "mark@gunDB.io", cat: { name: "Hobbes", species: "kitty" } })
|
|
.key('email/mark@gundb.io')
|
|
; |