Skip to content

Instantly share code, notes, and snippets.

@harbhub
Created June 13, 2013 02:05
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 harbhub/a91906d62023892efe9d to your computer and use it in GitHub Desktop.
Save harbhub/a91906d62023892efe9d to your computer and use it in GitHub Desktop.
//Original
{
"name": "harbhub",
"domains": [
"rudyd.com",
"marqueelephoto.com"
],
"subdomain": "harbhub",
"scripts": {
"start": "./server/index.js"
},
"version": "0.0.1-1",
"engines": {
"node": "0.8.*"
},
"dependencies": {
"mime": "~1.2.9"
},
"bundleDependencies": [
"testModule",
"testModules",
"handleRequest",
"handleSocket"
]
}
//What you guys change it to when I deploy...
{
"name": "harbhub",
"domains": [
"rudyd.com",
"marqueelephoto.com"
],
"subdomain": "harbhub",
"scripts": {
"start": "./server/index.js"
},
"version": "0.0.1-1",
"engines": {
"node": "0.8.*"
},
"dependencies": {
"mime": "~1.2.9",
"handleRequest": "*"
},
"bundleDependencies": [
"testModule",
"testModules",
"handleRequest",
"handleSocket"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment