honeypot-api / src /main.py
Ankit19102004
initial update
5fc3d59
raw
history blame contribute delete
150 Bytes
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)