Skip to content

Commit

Permalink
doc: Add suggestion about create first admin user with command line (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
eliot488995568 authored Dec 5, 2024
1 parent 62a4701 commit 5e50725
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,14 @@ docker compose exec app bin/console app:install
docker compose exec app bin/console install
# Clear cache
docker compose exec app bin/console cache:clear
# Create your admin account
```

Before accessing the application, you need to create an admin user. Use the following command to create a user account:
```shell
# Create your admin account with the specified username and email
docker compose exec app bin/console users:create -m username@roadiz.io -b -s username
# By default, a random password will be generated for the new user.
# If you want to set a custom password, you can add the -p option followed by your desired password
```

### Manage Node-types
Expand Down

0 comments on commit 5e50725

Please sign in to comment.