1.0.3 • Published 9 years ago

coins-grunt-env v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

coins-grunt-env

We like grunt-env in our build process. Our many repos all use it!

But why duplicate more than we have to? This simple exported config enables us, in all of our projects, to always build with the latest COINS env config.

// grunt/env.js
'use strict';
module.exports = require('coins-grunt-env');

What's in 'coins-grunt-env'?

module.exports = {
    development: {
        NODE_ENV: 'development',
        COINS_ENV: 'development',
        COINS_NODE_API_SSL_PORT: 8443
    },
    staging: {
        NODE_ENV: 'staging',
        COINS_ENV: 'staging',
        COINS_NODE_API_HOSTNAME: 'stage-coins-api.mrn.org'
    },
    production: {
        NODE_ENV: 'production',
        COINS_ENV: 'production',
        COINS_NODE_API_HOSTNAME: 'coins-api.mrn.org'
    }
};
1.0.3

9 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago