I need to specify the filename and start path config settings so that when I run my php project it will start with the correct php file and look in the right place (not the default index.php). However in cloud9 it doesn't look like the htaccess is the correct place for this? I don't think Cloud9 gives us access to htaccess anyway. The c9 documentation (https://docs.c9.io/v1.0/docs/custom-runners) describes editing the existing, or creating a new runner. I'm not experienced with runner syntax and the examples they gave are not enough. But it looks like maybe I'm supposed to use $file_path or $file variables in the runner to accomplish this? Has anyone done this in cloud9? If so can you provide an example?
If the runner is in fact the place to accomplish this, where should the variable and value go in this example:
Blockquote
{
"cmd": ["go", "run", "$file", "$args"],
"selector": "source.go",
"info": "Your code is running :)"
}