Skip to content
Merged
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
2 changes: 1 addition & 1 deletion contributing/development-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ APP_TIMEZONE=UTC
```

{% hint style="info" %}
Generate the APP\_KEY at with the command; `echo -n 'base64:'; openssl rand -base64 32;`
Generate the APP\_KEY with: `echo "base64:$(openssl rand -base64 32 2>/dev/null)"`
{% endhint %}

#### 3. Install Composer dependencies
Expand Down
2 changes: 1 addition & 1 deletion getting-started/installation/using-docker-compose.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Docker run commands can be found on the [Using Docker](using-docker.md) page and
Run the command below to generate a key, the key is required for [encryption](../../security/encryption.md). Copy this key including the `base64:` prefix and paste it as your `APP_KEY` value.

```bash
echo -n 'base64:'; openssl rand -base64 32;
echo "base64:$(openssl rand -base64 32 2>/dev/null)"
```
{% endstep %}

Expand Down
4 changes: 2 additions & 2 deletions getting-started/installation/using-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Docker run commands assume you already have a database installed and configured.
Run the command below to generate a key, the key is required for [encryption](../../security/encryption.md). Copy this key including the `base64:` prefix and paste it as your `APP_KEY` value.

```bash
echo -n 'base64:'; openssl rand -base64 32;
echo "base64:$(openssl rand -base64 32 2>/dev/null)"
```
{% endstep %}

Expand Down Expand Up @@ -150,6 +150,6 @@ During the start the container there is a default username and password created.
{% endstep %}
{% endstepper %}

[^1]: Generate with: `echo -n 'base64:'; openssl rand -base64 32`
[^1]: Generate with: `echo "base64:$(openssl rand -base64 32 2>/dev/null)"`

[^2]: The URL where you'll access the app (e.g., `http://localhost:8080`)
2 changes: 1 addition & 1 deletion security/encryption.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ An application key (`APP_KEY`) is used for encryption. It is a base64 encoded st
Run the command below to generate your `APP_KEY`.

```bash
echo -n 'base64:'; openssl rand -base64 32;
echo "base64:$(openssl rand -base64 32 2>/dev/null)"
```