File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 88@click .command ('serve' )
99@options .optional_tools_arg ()
1010@options .galaxy_root_option ()
11+ @options .galaxy_port_option ()
1112@options .install_galaxy_option ()
1213@options .no_cache_galaxy_option ()
1314@options .no_cleanup_option ()
Original file line number Diff line number Diff line change 88
99@click .command ('tool_factory' )
1010@options .galaxy_root_option ()
11+ @options .galaxy_port_option ()
1112@options .install_galaxy_option ()
1213@options .no_cache_galaxy_option ()
1314@options .no_cleanup_option ()
Original file line number Diff line number Diff line change @@ -37,6 +37,15 @@ def galaxy_root_option():
3737 )
3838
3939
40+ def galaxy_port_option ():
41+ return click .option (
42+ "--port" ,
43+ type = int ,
44+ default = "9090" ,
45+ help = 'Port to serve Galaxy on (default is 9090).'
46+ )
47+
48+
4049def dependency_resolvers_option ():
4150 return click .option (
4251 "--dependency_resolvers_config_file" ,
You can’t perform that action at this time.
0 commit comments