Closed Nomed73 closed 1 year ago
The error won't change the behavior though. The server must be kept running as long as you want to use it from the browser (zooming into a graph will dynamically reload data). If you want the script to continue, make sure to run it in the background.
Does the directory /home/nm/dev/flight_review/app/plot_app/../../data/cache/
exist?
@bkueng I tried looking for that directory. I just don't know where to look in for the /../../ folders. I did look through most and have not seen them. Suppose it doesn't exist, where should I create it or is it supposed to be created on its own?
I have tried running it in the background but I haven't found the way to make it work properly. I will keep searching for a solution and post here if I find one.
It's /home/nm/dev/flight_review/data/cache/
.
If you use python, you can do:
import subprocess
subprocess.Popen(["serve.py","-f","file.ulg"])
I'm assuming this is resolved. Let me know if not.
I am running flight review locally, from a python script that uses os.system() to run it. There seems to be no issue in running it. My web browser shows FlightReview, the data and graphs all seem to be correct. However I get the following errors in the console:
Although I get this information in the console, Flight Review does open up in Firefox and shows the data and graphs correctly. However, I believe this could be keeping the script to continue running and I cannot get back to other tasks in the script.
What should I be looking into to have this running without issues and return to the script.