15 lines
260 B
Python
15 lines
260 B
Python
import os
|
|
|
|
from vfire_monitor import create_app
|
|
|
|
|
|
app = create_app(base_dir=os.getenv("VFM_BASE_DIR"))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app.run(
|
|
host=os.getenv("HOST", "0.0.0.0"),
|
|
port=int(os.getenv("PORT", "8080")),
|
|
debug=False,
|
|
)
|