File tree 2 files changed +21
-6
lines changed
2 files changed +21
-6
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,12 @@ def cli(ctx, port):
40
40
sys .exit (returncode )
41
41
42
42
43
+ @cli .command ()
44
+ def services ():
45
+ """Start additional services defined in pyproject.toml"""
46
+ Services ().run ()
47
+
48
+
43
49
class Dev :
44
50
def __init__ (self , * , port ):
45
51
self .manager = HonchoManager ()
Original file line number Diff line number Diff line change 1
1
import os
2
+ import subprocess
3
+ import time
2
4
from pathlib import Path
3
5
4
6
import click
@@ -31,11 +33,7 @@ def get_services(root):
31
33
def __init__ (self ):
32
34
self .manager = HonchoManager ()
33
35
34
- def __enter__ (self ):
35
- if Pid ().exists ():
36
- click .secho ("Services already running in `bolt dev` command" , fg = "yellow" )
37
- return
38
-
36
+ def run (self ):
39
37
services = self .get_services (APP_PATH .parent )
40
38
for name , data in services .items ():
41
39
env = {
@@ -47,5 +45,16 @@ def __enter__(self):
47
45
48
46
self .manager .loop ()
49
47
48
+ def __enter__ (self ):
49
+ if Pid ().exists ():
50
+ click .secho ("Services already running in `bolt dev` command" , fg = "yellow" )
51
+ return
52
+
53
+ print ("Starting `bolt dev services`" )
54
+ self .subprocess = subprocess .Popen (
55
+ ["bolt" , "dev" , "services" ], cwd = APP_PATH .parent
56
+ )
57
+ time .sleep (0.5 )
58
+
50
59
def __exit__ (self , * args ):
51
- self .manager .terminate ()
60
+ self .subprocess .terminate ()
You can’t perform that action at this time.
0 commit comments