File size: 310 Bytes
0827183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

"""
To run the Flask bot app, in a py virtual environment,
```bash
pip install -r requirements.txt
python runserver.py
```
"""

from flask_bot_app import APP


if __name__ == "__main__":
    APP.run(host="0.0.0.0")