Repository URL to install this package:
|
Version:
3.5.1 ▾
|
require('dotenv').config();
const { run } = require('../commandHelper');
module.exports = args => {
run('yarn nodemon src/server.js', {
NODE_ENV: 'development',
SERVICES_HOST: 'http://localhost:3000',
MOCK_ENDPOINTS: !!args['--mock'],
PROXIED_SERVICES_HOST: process.env.SERVICES_HOST,
});
};