Skip to content

Commit

Permalink
Use port 5000 by default like with Connexion 2
Browse files Browse the repository at this point in the history
  • Loading branch information
juhoinkinen committed Apr 12, 2024
1 parent 3703423 commit 89f9c3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion annif/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def run_eval(


@cli.command("run")
@click.option("--port", type=int)
@click.option("--port", type=int, default=5000)
@click.option("--log-level")
@click_log.simple_verbosity_option(logger, default="ERROR")
def run_app(**kwargs):
Expand Down

0 comments on commit 89f9c3c

Please sign in to comment.