Teapack1 commited on
Commit
ebdb126
1 Parent(s): 4d48b6d
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,6 +1,7 @@
1
  import subprocess
2
 
3
- print(subprocess.run("sqlite3 --version", shell=True))
 
4
 
5
  print("Starting the FastAPI server...")
6
  subprocess.run("uvicorn fast_app:app --host 0.0.0.0 --port 7860", shell=True)
 
1
  import subprocess
2
 
3
+ result = subprocess.run("sqlite3 --version", shell=True, capture_output=True, text=True)
4
+ print(result.stdout.strip())
5
 
6
  print("Starting the FastAPI server...")
7
  subprocess.run("uvicorn fast_app:app --host 0.0.0.0 --port 7860", shell=True)