my-env / main.py
JJaniel
refactor: flatten project structure to root for openenv validate compliance
887ef72
raw
history blame contribute delete
248 Bytes
import uvicorn
from server.app import app
def main():
print("Starting Email Triage Environment Server...")
print("Local access: http://localhost:7860")
uvicorn.run(app, host="0.0.0.0", port=7860)
if __name__ == "__main__":
main()