remainsalways commited on
Commit
e1c03aa
·
verified ·
1 Parent(s): 47cd961

Update start

Browse files
Files changed (1) hide show
  1. start +6 -3
start CHANGED
@@ -1,7 +1,10 @@
1
  #!/bin/bash
2
 
3
- # Start pyUltroid in the background
4
- python3 -m devgagan &
5
 
6
- # Start server.py in the foreground
 
 
 
7
  exec python3 app.py
 
1
  #!/bin/bash
2
 
3
+ # Start devgagan and log output
4
+ python3 -m devgagan > devgagan.log 2>&1 &
5
 
6
+ # Ensure the background process doesn't exit prematurely
7
+ sleep 5
8
+
9
+ # Start app.py in the foreground
10
  exec python3 app.py