Skip to content

Commit

Permalink
docs: use octane:frankenphp instead of octane:start (#893)
Browse files Browse the repository at this point in the history
to be more consistent with OFFICIAL laravel documentation

(basically octane:start comment , will
check your env octane server and call octane:frankenphp )

Co-authored-by: kevin <[email protected]>
  • Loading branch information
Kevin-Detournay and kevin committed Jun 28, 2024
1 parent 213be22 commit 952dd7a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions docs/cn/laravel.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ composer require laravel/octane
php artisan octane:install --server=frankenphp
```

Octane 服务可以通过 `octane:start` Artisan 命令启动。
Octane 服务可以通过 `octane:frankenphp` Artisan 命令启动。

```console
php artisan octane:start
php artisan octane:frankenphp
```

`octane:start` 命令可以采用以下选项:
`octane:frankenphp` 命令可以采用以下选项:

* `--host`: 服务器应绑定到的 IP 地址(默认值: `127.0.0.1`
* `--port`: 服务器应可用的端口(默认值: `8000`
Expand Down
6 changes: 3 additions & 3 deletions docs/fr/laravel.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ Après avoir installé Octane, vous pouvez exécuter la commande Artisan `octane
php artisan octane:install --server=frankenphp
```

Le serveur Octane peut être démarré via la commande Artisan `octane:start`.
Le serveur Octane peut être démarré via la commande Artisan `octane:frankenphp`.

```console
php artisan octane:start
php artisan octane:frankenphp
```

La commande `octane:start` peut prendre les options suivantes :
La commande `octane:frankenphp` peut prendre les options suivantes :

* `--host` : L'adresse IP à laquelle le serveur doit se lier (par défaut : `127.0.0.1`)
* `--port` : Le port sur lequel le serveur doit être disponible (par défaut : `8000`)
Expand Down
6 changes: 3 additions & 3 deletions docs/laravel.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ After installing Octane, you may execute the `octane:install` Artisan command, w
php artisan octane:install --server=frankenphp
```

The Octane server can be started via the `octane:start` Artisan command.
The Octane server can be started via the `octane:frankenphp` Artisan command.

```console
php artisan octane:start
php artisan octane:frankenphp
```

The `octane:start` command can take the following options:
The `octane:frankenphp` command can take the following options:

* `--host`: The IP address the server should bind to (default: `127.0.0.1`)
* `--port`: The port the server should be available on (default: `8000`)
Expand Down
6 changes: 3 additions & 3 deletions docs/tr/laravel.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ Octane'ı kurduktan sonra, Octane'ın yapılandırma dosyasını uygulamanıza y
php artisan octane:install --server=frankenphp
```

Octane sunucusu `octane:start` Artisan komutu aracılığıyla başlatılabilir.
Octane sunucusu `octane:frankenphp` Artisan komutu aracılığıyla başlatılabilir.

```console
php artisan octane:start
php artisan octane:frankenphp
```

`octane:start` komutu aşağıdaki seçenekleri alabilir:
`octane:frankenphp` komutu aşağıdaki seçenekleri alabilir:

* `--host`: Sunucunun bağlanması gereken IP adresi (varsayılan: `127.0.0.1`)
* `--port`: Sunucunun erişilebilir olması gereken port (varsayılan: `8000`)
Expand Down

0 comments on commit 952dd7a

Please sign in to comment.