From 9afe52c81deb08aea526722885b7310cfae9cc45 Mon Sep 17 00:00:00 2001 From: Will Roberts Date: Fri, 23 Jun 2017 16:12:52 +0200 Subject: [PATCH] concurrently: set names for the two servers --- {{cookiecutter.app_name}}/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.app_name}}/package.json b/{{cookiecutter.app_name}}/package.json index b312ad8..f48da00 100644 --- a/{{cookiecutter.app_name}}/package.json +++ b/{{cookiecutter.app_name}}/package.json @@ -9,7 +9,7 @@ "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "build": "NODE_ENV=production ./node_modules/.bin/webpack --progress --colors -p", - "start": "NODE_ENV=debug FLASK_APP=$PWD/autoapp.py FLASK_DEBUG=1 ./node_modules/.bin/concurrently \"./node_modules/.bin/webpack-dev-server --port 2992 --hot --inline\" \"flask run\"", + "start": "NODE_ENV=debug FLASK_APP=$PWD/autoapp.py FLASK_DEBUG=1 ./node_modules/.bin/concurrently --names \"WEBPACK,FLASK\" \"./node_modules/.bin/webpack-dev-server --port 2992 --hot --inline\" \"flask run\"", "lint": "eslint \"assets/js/*.js\"" }, "repository": {