feat(UX): warn users during install that postgres is in testing
This commit is contained in:
parent
62122c731d
commit
c873c20c7b
1 changed files with 13 additions and 0 deletions
|
|
@ -91,6 +91,19 @@ def new_site(
|
|||
|
||||
frappe.init(site, new_site=True)
|
||||
|
||||
if db_type == "postgres":
|
||||
click.secho(
|
||||
"\nKindly Note: PostgreSQL support is currently in development and considered experimental.",
|
||||
fg="yellow",
|
||||
bold=True,
|
||||
)
|
||||
click.secho(
|
||||
"We are actively fixing schema and performance issues. If you encounter any bugs,\n"
|
||||
"please feel free to report them with a full traceback at:\n"
|
||||
"https://github.com/frappe/frappe/issues\n",
|
||||
fg="cyan",
|
||||
)
|
||||
|
||||
if site in frappe.get_all_apps():
|
||||
click.secho(
|
||||
f"Your bench has an app called {site}, please choose another name for the site.", fg="red"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue