File size: 341 Bytes
47d74e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import os

import phoenix as px

if __name__ == "__main__":
    # The port is already set in the Dockerfile, so we don't need to set it here
    os.environ["PHOENIX_PORT"] = "7860"
    app = px.launch_app()
    print("Phoenix app launched successfully!")

    # Keep the script running
    import time

    while True:
        time.sleep(1)