Skip to content

Commit

Permalink
♻️ Add pm2 app name
Browse files Browse the repository at this point in the history
  • Loading branch information
ishantiw committed Jul 12, 2024
1 parent 80ee48c commit cff083f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/runMainnet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ echo "All env vars are set."
# PM2 runs on the fall back path when using CodeDeploy agent and we can run with the given fall back path
export PM2_HOME=/etc/.pm2
sudo -E pm2 delete all # Delete any running app
sudo -E pm2 start "node ${app_dir}/dist/index.js --relayer --wallet awskms --keys "relayerKey""
sudo -E pm2 start --name "lisk-across-relayer" "node ${app_dir}/dist/index.js --relayer --wallet awskms --keys "relayerKey""
2 changes: 1 addition & 1 deletion scripts/runSepolia.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ echo "All env vars are set."
# PM2 runs on the fall back path when using CodeDeploy agent and we can run with the given fall back path
export PM2_HOME=/etc/.pm2
sudo -E pm2 delete all # Delete any running app
sudo -E pm2 start "node ${app_dir}/dist/index.js --relayer --wallet awskms --keys "relayerKey""
sudo -E pm2 start --name "lisk-across-relayer" "node ${app_dir}/dist/index.js --relayer --wallet awskms --keys "relayerKey""
2 changes: 1 addition & 1 deletion scripts/runSepoliaSimulationMode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ echo "All env vars are set."
# PM2 runs on the fall back path when using CodeDeploy agent and we can run with the given fall back path
export PM2_HOME=/etc/.pm2
sudo -E pm2 delete all # Delete any running app
sudo -E pm2 start "node ${app_dir}/dist/index.js --relayer --wallet awskms --keys "relayerKey""
sudo -E pm2 start --name "lisk-across-relayer" "node ${app_dir}/dist/index.js --relayer --wallet awskms --keys "relayerKey""

0 comments on commit cff083f

Please sign in to comment.