Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -760,6 +760,8 @@ FLAG DESCRIPTIONS
--admin-pass=<value> password of your administrator user.

The password that will be used for the first administrator user that is created during the Contao installation.
The password must satisfy the platform's password-complexity policy, which may vary depending on the application; a
password that is too weak (for example too short, or missing a mix of character types) may be rejected by the API.
If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
the installation is finished

Expand Down Expand Up @@ -863,6 +865,8 @@ FLAG DESCRIPTIONS
--admin-pass=<value> password of your administrator user.

The password that will be used for the first administrator user that is created during the Joomla! installation.
The password must satisfy the platform's password-complexity policy, which may vary depending on the application; a
password that is too weak (for example too short, or missing a mix of character types) may be rejected by the API.
If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
the installation is finished

Expand Down Expand Up @@ -951,6 +955,8 @@ FLAG DESCRIPTIONS
--admin-pass=<value> password of your administrator user.

The password that will be used for the first administrator user that is created during the Matomo installation.
The password must satisfy the platform's password-complexity policy, which may vary depending on the application; a
password that is too weak (for example too short, or missing a mix of character types) may be rejected by the API.
If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
the installation is finished

Expand Down Expand Up @@ -1040,6 +1046,8 @@ FLAG DESCRIPTIONS
--admin-pass=<value> password of your administrator user.

The password that will be used for the first administrator user that is created during the Nextcloud installation.
The password must satisfy the platform's password-complexity policy, which may vary depending on the application; a
password that is too weak (for example too short, or missing a mix of character types) may be rejected by the API.
If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
the installation is finished

Expand Down Expand Up @@ -1148,6 +1156,8 @@ FLAG DESCRIPTIONS
--admin-pass=<value> password of your administrator user.

The password that will be used for the first administrator user that is created during the Shopware 5 installation.
The password must satisfy the platform's password-complexity policy, which may vary depending on the application; a
password that is too weak (for example too short, or missing a mix of character types) may be rejected by the API.
If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
the installation is finished

Expand Down Expand Up @@ -1273,6 +1283,8 @@ FLAG DESCRIPTIONS
--admin-pass=<value> password of your administrator user.

The password that will be used for the first administrator user that is created during the Shopware 6 installation.
The password must satisfy the platform's password-complexity policy, which may vary depending on the application; a
password that is too weak (for example too short, or missing a mix of character types) may be rejected by the API.
If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
the installation is finished

Expand Down Expand Up @@ -1380,6 +1392,8 @@ FLAG DESCRIPTIONS
--admin-pass=<value> password of your administrator user.

The password that will be used for the first administrator user that is created during the TYPO3 installation.
The password must satisfy the platform's password-complexity policy, which may vary depending on the application; a
password that is too weak (for example too short, or missing a mix of character types) may be rejected by the API.
If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
the installation is finished

Expand Down Expand Up @@ -1475,6 +1489,8 @@ FLAG DESCRIPTIONS
--admin-pass=<value> password of your administrator user.

The password that will be used for the first administrator user that is created during the WordPress installation.
The password must satisfy the platform's password-complexity policy, which may vary depending on the application; a
password that is too weak (for example too short, or missing a mix of character types) may be rejected by the API.
If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after
the installation is finished

Expand Down
1 change: 1 addition & 0 deletions src/lib/resources/app/flags.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ function buildFlagsWithDescription(appName: string): AvailableFlags {
required: false,
summary: "password of your administrator user.",
description: `The password that will be used for the first administrator user that is created during the ${appName} installation.
The password must satisfy the platform's password-complexity policy, which may vary depending on the application; a password that is too weak (for example too short, or missing a mix of character types) may be rejected by the API.
If unspecified, a random secure password will be generated and printed to stdout. This password can be changed after the installation is finished`,
default: undefined,
}),
Expand Down
Loading