Leonydis137 commited on
Commit
7afedfe
·
verified ·
1 Parent(s): 2a47daf

Create run.sh

Browse files
Files changed (1) hide show
  1. run.sh +15 -0
run.sh ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # run.sh
3
+ #!/bin/bash
4
+
5
+ # Start the application
6
+ python app.py &
7
+
8
+ # Wait for the server to start
9
+ sleep 5
10
+
11
+ # Run self-update test
12
+ python self_update_test.py
13
+
14
+ # Stop the background process
15
+ kill $!