Editing your ray config

Finally, you'l need to add your project to your ray config. See the example below:

{
    "Projects" : [
        {
            "Name" : "new-project",
            "Src" : "https://github.com/username/new-project-repo",
            "Domain" : "localhost"
        }
    ]
}

Name is simply a unique name for your project, Src is a link to your project's git repository and Domain tells ray router (ray's reverse proxy) what host your project should be accessible at.

Last updated