Skip to content

Commit 12f7cd0

Browse files
committed
Merge pull request #74 from bnf/task/main/readme-update
[TASK] Update README install instructions
2 parents 6d2e706 + e67b971 commit 12f7cd0

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,16 @@ To do this, you need to execute the following command and substitute the argumen
2828
with your own environment configuration.
2929

3030
```bash
31+
export TYPO3_SETUP_ADMIN_PASSWORD=$(tr -dc "_A-Za-z0-9#=$()/" < /dev/urandom | head -c24)
3132
composer exec -- typo3 setup \
3233
--no-interaction \
33-
--driver=mysqli \
34-
--username=typo3 \
35-
--password=typo3 \
36-
--host=127.0.0.1 \
37-
--port=3306 \
38-
--dbname=typo3 \
34+
--server-type=other \
35+
--driver=sqlite \
3936
--admin-username=admin \
40-
--admin-email="[email protected]" \
41-
--admin-user-password=password \
37+
--admin-email="[email protected]" \
4238
--project-name="My TYPO3 Project" \
43-
--create-site="https://localhost/"
39+
--create-site="http://localhost:8000/"
40+
echo "Admin password: ${TYPO3_SETUP_ADMIN_PASSWORD}"
4441
```
4542

4643
### Development server

0 commit comments

Comments
 (0)