A Wintersmith plugin to manage environment-specific settings
Install globally or locally using npm:
npm install [-g] wintersmith-environments
Add wintersmith-environments
to your config.json
:
{
"plugins": [
"wintersmith-environments"
]
}
Define the environments
property:
{
"environments": {
"build": {
"locals": {
"url": "http://example.com"
}
},
"preview": {
"locals": {
"url": "http://staging.example.com"
}
}
}
}
wintersmith-environments
is released under the MIT license.