MammaMia-Urlo commited on
Commit
92ab448
·
verified ·
1 Parent(s): 99c57b6

Update run.py

Browse files
Files changed (1) hide show
  1. run.py +3 -1
run.py CHANGED
@@ -6,6 +6,8 @@ import config
6
 
7
  FILMPERTUTTI = config.FILMPERTUTTI
8
  STREAMINGCOMMUNITY = config.STREAMINGCOMMUNITY
 
 
9
 
10
 
11
 
@@ -64,4 +66,4 @@ def addon_stream(type, id):
64
 
65
 
66
  if __name__ == '__main__':
67
- app.run(host='0.0.0.0', port=8080)
 
6
 
7
  FILMPERTUTTI = config.FILMPERTUTTI
8
  STREAMINGCOMMUNITY = config.STREAMINGCOMMUNITY
9
+ HOST = config.HOST
10
+ PORT = int(config.PORT)
11
 
12
 
13
 
 
66
 
67
 
68
  if __name__ == '__main__':
69
+ app.run(host=HOST, port=PORT)