Created
September 24, 2022 19:37
-
-
Save aaemnnosttv/7a1a59c804cbc69db301f19dc8603168 to your computer and use it in GitHub Desktop.
Ray config file for use within Docker
This file contains hidden or 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
<?php // Save this in a file called "ray.php" | |
return [ | |
/* | |
* The host used to communicate with the Ray app. | |
*/ | |
'host' => 'host.docker.internal', | |
/* | |
* The port number used to communicate with the Ray app. | |
*/ | |
'port' => 23517, | |
/* | |
* Absolute base path for your sites or projects in Homestead, Vagrant, Docker, or another remote development server. | |
*/ | |
'remote_path' => null, | |
/* | |
* Absolute base path for your sites or projects on your local computer where your IDE or code editor is running on. | |
*/ | |
'local_path' => null, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment