Update cdt for nodejs backend
[appc/deployment.git] / cdt / src / main / scripts / startCdt.sh
index 1f7f38d..aa4c82e 100644 (file)
@@ -1,10 +1,10 @@
-#!/bin/bash
+#!/bin/sh
 
 ###
 # ============LICENSE_START=======================================================
 # APPC
 # ================================================================================
-# Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
+# Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved.
 # ================================================================================
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 
 CDT_PORT=${CDT_PORT:-30232}
 echo "Setting CDT port to $CDT_PORT"
-sed -i -e "s/30290/$CDT_PORT/" /usr/local/apache2/htdocs/main.bundle.js
+sed -i -e "s/30290/$CDT_PORT/" /opt/cdt/main.bundle.js
 
-exec /usr/local/bin/httpd-foreground
\ No newline at end of file
+CDT_HOME=/opt/cdt; export CDT_HOME
+LOG_DIR=/opt/cdt/logs; export LOG_DIR
+MaxLogSize=3000000; export MaxLogSize
+PORT=18080; export PORT
+HTTPS_KEY_FILE=/opt/cert/cdt-key.pem; export HTTPS_KEY_FILE
+HTTPS_CERT_FILE=/opt/cert/cdt-cert.pem; export HTTPS_CERT_FILE
+node $CDT_HOME/app/ndserver.js 2>&1 >/dev/null