@@ -20,7 +20,7 @@ def main():
2020
2121@main .command ()
2222@click .option ('--host' , default = "127.0.0.1" , help = "Host to run the app on" )
23- @click .option ('--port' , default = 5000 , help = "Port to run the app on" )
23+ @click .option ('--port' , default = 3005 , help = "Port to run the app on" )
2424@click .argument ('path' )
2525def run (path , host , port ):
2626 """Run the app from PATH folder in run mode."""
@@ -34,7 +34,7 @@ def run(path, host, port):
3434
3535@main .command ()
3636@click .option ('--host' , default = "127.0.0.1" , help = "Host to run the app on" )
37- @click .option ('--port' , default = 5000 , help = "Port to run the app on" )
37+ @click .option ('--port' , default = 3006 , help = "Port to run the app on" )
3838@click .option ('--enable-remote-edit' , help = "Set this flag to allow non-local requests in edit mode." , is_flag = True )
3939@click .option ('--enable-server-setup' , help = "Set this flag to enable server setup hook in edit mode." , is_flag = True )
4040@click .argument ('path' )
@@ -63,7 +63,7 @@ def create(path, template):
6363
6464@main .command ()
6565@click .option ('--host' , default = "127.0.0.1" , help = "Host to run the app on" )
66- @click .option ('--port' , default = 5000 , help = "Port to run the app on" )
66+ @click .option ('--port' , default = 3006 , help = "Port to run the app on" )
6767@click .option ('--enable-remote-edit' , help = "Set this flag to allow non-local requests in edit mode." , is_flag = True )
6868def hello (port , host , enable_remote_edit ):
6969 """Create and run an onboarding 'Hello' app."""
0 commit comments