commit:27046c287f873d3b38dc70c34a5bfe52662d95e8
author:Chip Black
committer:Chip Black
date:Wed Nov 9 23:37:02 2022 -0600
parents:a1698aafae05d59f9704e672fb920ee243de7b17
Remove unneeded start.sh script
diff --git a/start.sh b/start.sh
line changes: +0/-14
index ad042a4..0000000
--- a/start.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-export RAILS_ENV=production
-export NODE_ENV=production
-
-cd $HOME/live
-
-bundle exec puma -C config/puma.rb &
-echo "Started Puma on $!"
-PORT=4000 STREAMING_CLUSTER_NUM=1 node ./streaming &
-echo "Started Streaming on $!"
-bundle exec sidekiq -c 25 &
-echo "Started sidekiq on $!"
-wait