Created
December 15, 2013 23:12
-
-
Save superscott/7979689 to your computer and use it in GitHub Desktop.
Node.js / Ghost: config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// # Ghost Configuration | |
// Setup your Ghost install for various environments | |
var path = require('path'), | |
config; | |
config = { | |
// ### Development **(default)** | |
development: { | |
// The url to use when providing links to the site, E.g. in RSS and email. | |
url: '', | |
// Example mail config | |
// Visit http://docs.ghost.org/mail for instructions | |
// ``` | |
// mail: { | |
// transport: 'sendgrid', | |
// host: 'smtp.sendgrid.net', | |
// options: { | |
// service: 'Sendgrid', | |
// auth: { | |
// user: '', // Super secret username | |
// pass: '' // Super secret password | |
// } | |
// } | |
// }, | |
// ``` | |
database: { | |
client: 'sqlite3', | |
connection: { | |
filename: path.join(__dirname, '/content/data/ghost-dev.db') | |
}, | |
debug: false | |
}, | |
server: { | |
// Host to be passed to node's `net.Server#listen()` | |
host: '127.0.0.1', | |
// Port to be passed to node's `net.Server#listen()`, for iisnode set this to `process.env.PORT` | |
port: '2368' | |
} | |
}, | |
// ### Production | |
// When running Ghost in the wild, use the production environment | |
// Configure your URL and mail settings here | |
production: { | |
url: 'http://hollandaiseparty.com', | |
mail: { | |
transport: 'SMTP', | |
host: 'smtp.mailgun.org', | |
options: { | |
service: 'Mailgun', | |
auth: { | |
user: '', // Super secret username | |
pass: '' // Super secret password | |
} | |
} | |
}, | |
database: { | |
client: 'sqlite3', | |
connection: { | |
filename: path.join(__dirname, '/content/data/ghost.db') | |
}, | |
debug: false | |
}, | |
server: { | |
// Host to be passed to node's `net.Server#listen()` | |
host: '127.0.0.1', | |
// Port to be passed to node's `net.Server#listen()`, for iisnode set this to `process.env.PORT` | |
port: '2368' | |
} | |
}, | |
// **Developers only need to edit below here** | |
// ### Testing | |
// Used when developing Ghost to run tests and check the health of Ghost | |
// Uses a different port number | |
testing: { | |
url: 'http://127.0.0.1:2369', | |
database: { | |
client: 'sqlite3', | |
connection: { | |
filename: path.join(__dirname, '/content/data/ghost-test.db') | |
} | |
}, | |
server: { | |
host: '127.0.0.1', | |
port: '2369' | |
} | |
}, | |
// ### Travis | |
// Automated testing run through Github | |
travis: { | |
url: 'http://127.0.0.1:2368', | |
database: { | |
client: 'sqlite3', | |
connection: { | |
filename: path.join(__dirname, '/content/data/ghost-travis.db') | |
} | |
}, | |
server: { | |
host: '127.0.0.1', | |
port: '2368' | |
} | |
} | |
}; | |
// Export config | |
module.exports = config; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment