File size: 150 Bytes
5fc3d59
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from honeypot_api import app
import os


if __name__ == "__main__":
    port = int(os.getenv("PORT", "8000"))
    app.run(host="0.0.0.0", port=port)