We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7572270 commit a236b3cCopy full SHA for a236b3c
cli/website.py
@@ -2,6 +2,7 @@
2
3
from typing_extensions import Annotated
4
5
+import json
6
import typer
7
from snakesay import snakesay
8
from tabulate import tabulate
@@ -32,8 +33,11 @@ def create(
32
33
],
34
):
35
"""Create an ASGI website"""
- Website().create(domain_name=domain_name, command=command)
36
- # TODO: do some basic checks
+ response = Website().create(domain_name=domain_name, command=command)
37
+
38
+ typer.echo("Response:")
39
+ typer.echo(json.dumps(response))
40
41
typer.echo(
42
snakesay(
43
f"All done! Your site is now live at {domain_name}. "
0 commit comments