Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 240 Bytes

File metadata and controls

10 lines (8 loc) · 240 Bytes

How To Run

python app.py


This server will start on port 5000 by default. You can change this in `app.py` by changing the following line to this:

```python
if __name__ == "__main__":
    app.run(debug=True, port=<desired port>)