chansung commited on
Commit
c52a6aa
1 Parent(s): 3145614

Update entry_script.sh

Browse files
Files changed (1) hide show
  1. entry_script.sh +4 -2
entry_script.sh CHANGED
@@ -1,7 +1,9 @@
1
  #!/bin/bash
2
 
3
  # Start the first process
4
- python entry_point.py &
5
 
6
  # Start the second process
7
- python health_check.py &
 
 
 
1
  #!/bin/bash
2
 
3
  # Start the first process
4
+ python entry_point.py > log1.log &
5
 
6
  # Start the second process
7
+ python health_check.py > log2.log &
8
+
9
+ tail -f log1.log