Merge pull request #2 from D0han/file_permissions

Allow openwebrx.py to be run as normal executable
This commit is contained in:
jketterl 2019-07-21 21:06:53 +02:00 committed by GitHub
commit c0a0a642f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 5 deletions

View File

@ -90,12 +90,8 @@ Optional Dependency if you want to decode WSJT-X modes:
After cloning this repository and connecting an RTL-SDR dongle to your computer, you can run the server:
python openwebrx.py
./openwebrx.py
You may need to specify the Python version explicitly if your distribution still defaults to Python 2:
python3 openwebrx.py
You can now open the GUI at <a href="http://localhost:8073">http://localhost:8073</a>.
Please note that the server is also listening on the following ports (on localhost only):

0
csdr.py Executable file → Normal file
View File

2
openwebrx.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
from http.server import HTTPServer
from owrx.http import RequestHandler
from owrx.config import PropertyManager