We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0075788 + 614f3ba commit 0def8e1Copy full SHA for 0def8e1
quickstart/src/services.py
@@ -4,6 +4,9 @@
4
from src.client import client
5
from src.workflows.workflow import GreetingWorkflow
6
from watchfiles import run_process
7
+from restack_ai.restack import ServiceOptions
8
+import webbrowser
9
+
10
async def main():
11
12
await client.start_service(
@@ -20,6 +23,7 @@ def run_services():
20
23
def watch_services():
21
24
watch_path = os.getcwd()
22
25
print(f"Watching {watch_path} and its subdirectories for changes...")
26
+ webbrowser.open("http://localhost:5233")
27
run_process(watch_path, recursive=True, target=run_services)
28
29
if __name__ == "__main__":
0 commit comments