aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/build_catalog_ui.sh
diff options
context:
space:
mode:
authorMichael Lando <ml636r@att.com>2017-02-19 10:28:42 +0200
committerMichael Lando <ml636r@att.com>2017-02-19 10:51:01 +0200
commit451a3400b76511393c62a444f588a4ed15f4a549 (patch)
treee4f5873a863d1d3e55618eab48b83262f874719d /catalog-ui/build_catalog_ui.sh
parent5abfe4e1fb5fae4bbd5fbc340519f52075aff3ff (diff)
Initial OpenECOMP SDC commit
Change-Id: I0924d5a6ae9cdc161ae17c68d3689a30d10f407b Signed-off-by: Michael Lando <ml636r@att.com>
Diffstat (limited to 'catalog-ui/build_catalog_ui.sh')
-rw-r--r--catalog-ui/build_catalog_ui.sh84
1 files changed, 84 insertions, 0 deletions
diff --git a/catalog-ui/build_catalog_ui.sh b/catalog-ui/build_catalog_ui.sh
new file mode 100644
index 0000000000..8bae776893
--- /dev/null
+++ b/catalog-ui/build_catalog_ui.sh
@@ -0,0 +1,84 @@
+
+#!/bin/sh
+
+### Set the node environment.
+#NODE_VERSION="v6.2.2"
+
+#echo "Set the node environment."
+#. "$NVM_DIR/nvm.sh"
+#echo "OK."
+#echo ""
+
+
+
+### Add newer c++ compiler.
+#if [ -f /opt/rh/devtoolset-4/enable ]; then
+# . /opt/rh/devtoolset-4/enable
+#fi
+
+
+
+
+### Set the node version manager version.
+#echo "Set the node version manager version."
+#nvm use ${NODE_VERSION}
+#echo "OK."
+#echo ""
+
+
+### Run install bower.
+echo "Run install bower."
+#if [ -e $NVM_DIR/versions/node/${NODE_VERSION}/lib/node_modules/bower/bin/bower ]; then
+# echo " - bower is already installed."
+#else
+npm install bower
+#fi
+#echo "OK."
+#echo ""
+
+
+
+### Run install grunt-cli.
+echo "Run install grunt-cli."
+#if [ -e $NVM_DIR/versions/node/${NODE_VERSION}/lib/node_modules/grunt-cli/bin/grunt ]; then
+# echo " - grunt-cli is already installed."
+#else
+npm install grunt-cli
+#fi
+#echo "OK."
+#echo ""
+
+
+
+### Clean the Node cache.
+#echo "Clean the Node cache - if stuck."
+#npm cache clean
+#echo "OK."
+#echo ""
+
+
+
+### Run the Node package manager (NPM).
+echo "Run the Node package manager (NPM)."
+#npm config set proxy http://one.proxy.att.com:8080
+#npm config set https-proxy http://one.proxy.att.com:8080
+#npm config set registry https://registry.npmjs.org
+
+npm install
+echo "OK."
+echo ""
+
+
+
+### Install the Bower components.
+echo "Install the Bower components."
+bower install
+echo "OK."
+echo ""
+
+
+
+### Build the application.
+echo "Build the application."
+grunt build
+