Spaces:
Running
Running
File size: 301 Bytes
b8a800e | 1 2 3 4 5 6 7 8 9 10 11 | #!/usr/bin/env python3
"""
AmberMDFlow - Entry point when running from project root.
Uses the ambermdflow package. For installed package: use `ambermdflow` or `python -m ambermdflow`.
"""
from ambermdflow.app import app
if __name__ == "__main__":
app.run(debug=False, host="0.0.0.0", port=7860)
|