dashboardjavacloudcoapiotiot-analyticsiot-platformiot-solutionskafkalwm2mmicroservicesmiddlewaremqttnettyplatformsnmpthingsboardvisualizationwebsocketswidgets
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
428 B
19 lines
428 B
#!/bin/bash
|
|
#
|
|
# SPDX-FileCopyrightText: Copyright The Thingsboard Authors
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
|
|
echo "Starting '${project.name}' ..."
|
|
|
|
CONF_FOLDER="${pkg.installFolder}/conf"
|
|
|
|
configfile=${pkg.name}.conf
|
|
|
|
source "${CONF_FOLDER}/${configfile}"
|
|
|
|
cd ${pkg.installFolder}
|
|
|
|
# This will forward this PID 1 to the node.js and forward SIGTERM for graceful shutdown as well
|
|
exec node --no-compilation-cache server.js
|
|
|