From 8e50651d295957a394acc7d30d35253c1d6dbe7d Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Tue, 26 Sep 2023 06:05:28 +0300 Subject: [PATCH] fix sample --- .sample/run.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.sample/run.sh b/.sample/run.sh index 88af7ad..7707987 100755 --- a/.sample/run.sh +++ b/.sample/run.sh @@ -1,17 +1,18 @@ #!/usr/bin/env sh -echo "Instalalting ${MODULE_NAME}..." +echo "Instalalting MODULE_NAME..." # Add code here # Use varibles from the templatefile function in main.tf # e.g. LOG_PATH, PORT, etc. echo "Installation comlete!" -echo "Starting ${MODULE_NAME}..." +echo "Starting MODULE_NAME..." # Start the app in here # 1. Use & to run it in background # 2. redirct stdout and stderr to log files ./app >${LOG_PATH} 2>&1 & -echo "Sample app started!" +echo "MODULE_NAME Started!" +echo "check logs at ${LOG_PATH}"