Skip to content

Commit

Permalink
#5 fixes autoconfigure django help strings as defaults are autogenerated
Browse files Browse the repository at this point in the history
  • Loading branch information
filiplajszczak authored and caseneuve committed Mar 13, 2021
1 parent 205b1d2 commit ecbe478
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/django.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@

@app.command()
def autoconfigure(
repo_url: str,
repo_url: str = typer.Argument(..., help="url of remote git repository of your django project"),
domain_name: str = typer.Option(
"your-username.pythonanywhere.com",
"-d",
"--domain",
help="Domain name, eg www.mydomain.com [default: your-username.pythonanywhere.com]",
help="Domain name, eg www.mydomain.com",
),
python_version: str = typer.Option(
"3.6",
"-p",
"--python-version",
help="Python version, eg '3.8' [default: 3.6]",
help="Python version, eg '3.8'",
),
nuke: bool = typer.Option(
False,
Expand Down

0 comments on commit ecbe478

Please sign in to comment.