From 2b359c5b3ee4ea2537546e650633dfd17f24e727 Mon Sep 17 00:00:00 2001 From: rob Date: Sun, 30 Oct 2022 22:03:24 -0400 Subject: [PATCH 1/2] environment control scripts updated --- restart-production | 3 +++ start-production | 18 ++++++++---------- stop-production | 18 ++++++++---------- 3 files changed, 19 insertions(+), 20 deletions(-) create mode 100644 restart-production diff --git a/restart-production b/restart-production new file mode 100644 index 00000000..51076c2c --- /dev/null +++ b/restart-production @@ -0,0 +1,3 @@ +#!/bin/bash +./stop-production +./start-production \ No newline at end of file diff --git a/start-production b/start-production index 965260a6..e876e837 100755 --- a/start-production +++ b/start-production @@ -1,12 +1,10 @@ #!/bin/bash -# -# WORKERS -# -forever start --killSignal=SIGINT app/workers/reeeper.js -forever start --killSignal=SIGINT app/workers/host-services.js - -# -# APP HOSTS -# -forever start --killSignal=SIGINT dtp-libertylinks.js \ No newline at end of file +sudo supervisorctl start \ + base-host-services:* \ + base-reeeper:* \ + base-newsletter:* \ + base-newsroom:* \ + base-media:* \ + base-chat:* \ + base:* \ No newline at end of file diff --git a/stop-production b/stop-production index 692e5b27..12b45166 100755 --- a/stop-production +++ b/stop-production @@ -1,12 +1,10 @@ #!/bin/bash -# -# APP HOSTS -# -forever stop dtp-libertylinks.js - -# -# WORKERS -# -forever stop app/workers/host-services.js -forever stop app/workers/reeeper.js \ No newline at end of file +sudo supervisorctl stop \ + base:* + base-chat:* \ + base-media:* \ + base-newsroom:* \ + base-newsletter:* \ + base-reeeper:* \ + base-host-services:* \ \ No newline at end of file From a13e722db349334c95313dba5d8ba28b571834b8 Mon Sep 17 00:00:00 2001 From: rob Date: Sun, 30 Oct 2022 22:03:38 -0400 Subject: [PATCH 2/2] v0.4.6 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5c91317f..41254754 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dtp-base", - "version": "0.4.5", + "version": "0.4.6", "description": "Open source web app engine for the Digital Telepresence Platform.", "main": "dtp-webapp.js", "author": "DTP Technologies, LLC",