Skip to content
Open
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
2 changes: 1 addition & 1 deletion Documentation/Quickstart/_installation_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ mkdir my_project && cd my_project
composer create-project "typo3/cms-base-distribution:^14"

# Run TYPO3 CLI setup
vendor/bin/typo3 setup --create-site
vendor/bin/typo3 setup --create-site <siteurl>

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<siteurl> isn't safe to copy-paste here: < and > are shell redirection operators, so a reader who pastes the command literally gets a confusing shell error (bash tries to redirect stdin from a file named siteurl) instead of the CLI's own "value required" message.

Suggested change
vendor/bin/typo3 setup --create-site <siteurl>
# Replace example.org with your own domain
vendor/bin/typo3 setup --create-site https://example.org