Support test/qa envrionment

This commit is contained in:
Olusesan Ameye
2025-08-17 10:42:08 +00:00
parent d71fe9cc01
commit ad4a92ceed
+6 -1
View File
@@ -4,12 +4,17 @@ set -x
export NODE_ENV="${NODE_ENV:-development}"
if [ $NODE_ENV == "development" ]; then
if [ $NODE_ENV = "development" ]; then
# this runs webpack-dev-server with hot reloading
echo "Development build"
npm install --legacy-peer-deps
npm start
# 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
# build the app and serve it via nginx
echo "Production build"