SakibAhmed commited on
Commit
0b4ba99
·
verified ·
1 Parent(s): 2b716d1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -20,4 +20,5 @@ def analyze():
20
  entities = extract_entities(log_content)
21
  return jsonify(entities)
22
 
23
- app.run(host='0.0.0.0', port=8000, debug=True)
 
 
20
  entities = extract_entities(log_content)
21
  return jsonify(entities)
22
 
23
+ if __name__ == "__main__":
24
+ app.run(host='0.0.0.0', port=5000, debug=True)