1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-04-09 09:23:57 +02:00

updated installer note

This commit is contained in:
Gani Georgiev 2024-11-06 20:06:34 +02:00
parent bed45beb13
commit 241a81e1fc

View File

@ -38,7 +38,7 @@ func loadInstaller(app core.App, dashboardURL string) error {
_ = launchURL(url)
color.Magenta("\n(!) Launch the URL below in the browser if it hasn't been open already to create your first superuser account:")
color.New(color.Bold).Add(color.FgCyan).Println(url)
color.New(color.FgHiBlack, color.Italic).Printf("(you can also create your first superuser account by running '%s superuser upsert test@example.com yourpass')\n", os.Args[0])
color.New(color.FgHiBlack, color.Italic).Printf("(you can also create your first superuser account by running: %s superuser upsert EMAIL PASS)\n", os.Args[0])
return nil
}