forked from webhooksite/webhook.site
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate to Laravel Echo, migrate to Browserify, add example to .env.e…
…xample, add laravel-echo-server.json.example, update paw file
- Loading branch information
Showing
14 changed files
with
9,224 additions
and
508 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ Homestead.yaml | |
Homestead.json | ||
.env | ||
.idea/workspace.xml | ||
laravel-echo-server.json |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"authHost": "http://webhook.test", | ||
"authEndpoint": "/broadcasting/auth", | ||
"clients": [ | ||
{ | ||
"appId": "a60bbb116f7f2462", | ||
"key": "d952cbdfb22723e675d309440e9047e9" | ||
} | ||
], | ||
"database": "redis", | ||
"databaseConfig": { | ||
"redis": { | ||
"path": "/tmp/redis.sock" | ||
} | ||
}, | ||
"devMode": true, | ||
"host": null, | ||
"port": "6001", | ||
"protocol": "http", | ||
"socketio": { | ||
"wsEngine": "uws" | ||
}, | ||
"sslCertPath": "", | ||
"sslKeyPath": "", | ||
"sslCertChainPath": "", | ||
"sslPassphrase": "", | ||
"apiOriginAllow": { | ||
"allowCors": true, | ||
"allowOrigin": "webhook.test", | ||
"allowMethods": "*", | ||
"allowHeaders": "*" | ||
} | ||
} |
Oops, something went wrong.