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)