Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Add LARAVEL_ECHO_SERVER_AUTH_ENDPOINT #564

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ If a .env file is found in the same directory as the laravel-echo-server.json
file, the following options can be overridden:

- `authHost`: `LARAVEL_ECHO_SERVER_AUTH_HOST` *Note*: This option will fall back to the `LARAVEL_ECHO_SERVER_HOST` option as the default if that is set in the .env file.
- `authEndpoint`: `LARAVEL_ECHO_SERVER_AUTH_ENDPOINT`
- `host`: `LARAVEL_ECHO_SERVER_HOST`
- `port`: `LARAVEL_ECHO_SERVER_PORT`
- `devMode`: `LARAVEL_ECHO_SERVER_DEBUG`
Expand Down
1 change: 1 addition & 0 deletions src/cli/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export class Cli {
*/
envVariables: any = {
LARAVEL_ECHO_SERVER_AUTH_HOST: "authHost",
LARAVEL_ECHO_SERVER_AUTH_ENDPOINT: "authEndpoint",
LARAVEL_ECHO_SERVER_DEBUG: "devMode",
LARAVEL_ECHO_SERVER_HOST: "host",
LARAVEL_ECHO_SERVER_PORT: "port",
Expand Down