Skip to content

Instantly share code, notes, and snippets.

@itsrachelfish
Last active January 16, 2020 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itsrachelfish/415f86e3ed54847cec1fa901f05c66aa to your computer and use it in GitHub Desktop.
Save itsrachelfish/415f86e3ed54847cec1fa901f05c66aa to your computer and use it in GitHub Desktop.
Wetfish Sysadmin
module.exports = {
session: {
secret: 'random'
},
mysql: {
username: 'login',
password: 'secure',
database: 'login'
},
sendgrid: {
username: 'wetfish-login',
password: 'hello-world'
}
};
module.exports =
{
// Wetfish login
login:
{
app_id: 'abc123',
app_secret: 'abc123'
},
mysql:
{
username: 'services',
password: "secure",
database: 'services'
},
session:
{
secret: "random"
},
hostnames:
[
'network.services',
'unicorn.sparkle.princess',
'is.a.tiny.teacup',
'madmin.madtown'
]
}
node_modules/*/package.json | grep -E "name|version"
"name": "bcrypt",
"version": "0.8.1",
"name": "buffer-equal-constant-time",
"version": "1.0.1",
"name": "connect-redis",
"version": "2.2.0",
"name": "express",
"version": "4.12.0",
"name": "express-session",
"version": "1.10.3",
"name": "irc",
"version": "0.3.9",
"name": "mysql",
"version": "2.5.5",
"name": "redis",
"version": "0.12.1",
services@irc:~/services/login$ cat node_modules/*/package.json | grep -E "name|version"
"name": "async",
"version": "0.9.0",
"name": "bcrypt",
"version": "0.8.1",
"name": "body-parser",
"version": "1.12.0",
"name": "connect-redis",
"version": "2.2.0",
"name": "express",
"version": "4.12.0",
"name": "express-session",
"version": "1.10.3",
"name": "hjs",
"version": "0.0.6",
"name": "mysql",
"version": "2.5.5",
"name": "redis",
"version": "0.12.1",
"name": "request",
"version": "2.53.0",
"name": "sendgrid",
"version": "1.6.0",
"name": "validator",
"version": "3.32.0",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment