Support test/qa envrionment
This commit is contained in:
@@ -4,12 +4,17 @@ set -x
|
|||||||
|
|
||||||
export NODE_ENV="${NODE_ENV:-development}"
|
export NODE_ENV="${NODE_ENV:-development}"
|
||||||
|
|
||||||
if [ $NODE_ENV == "development" ]; then
|
if [ $NODE_ENV = "development" ]; then
|
||||||
# this runs webpack-dev-server with hot reloading
|
# this runs webpack-dev-server with hot reloading
|
||||||
echo "Development build"
|
echo "Development build"
|
||||||
npm install --legacy-peer-deps
|
npm install --legacy-peer-deps
|
||||||
npm start
|
npm start
|
||||||
# npm run build
|
# npm run build
|
||||||
|
elif [ $NODE_ENV = "qa" -o $NODE_ENV = "test" ]; then
|
||||||
|
echo "QA build"
|
||||||
|
export NODE_ENV="test"
|
||||||
|
npm install --legacy-peer-deps
|
||||||
|
npm start
|
||||||
else
|
else
|
||||||
# build the app and serve it via nginx
|
# build the app and serve it via nginx
|
||||||
echo "Production build"
|
echo "Production build"
|
||||||
|
|||||||
Reference in New Issue
Block a user