mirror of
https://github.com/xevidos/codiad.git
synced 2024-11-13 07:11:14 +01:00
16 lines
332 B
PHP
16 lines
332 B
PHP
|
<?php
|
||
|
/* Define authentication program */
|
||
|
define("shellProgram","expect");
|
||
|
//define("shellProgram","empty"); //DO NOT USE, empty will be added in a future version
|
||
|
//define("shellProgram","python");
|
||
|
|
||
|
/* Add your git config here
|
||
|
Example:
|
||
|
"http.sslVerify" => "false"
|
||
|
*/
|
||
|
function getConfig() {
|
||
|
return array(
|
||
|
|
||
|
);
|
||
|
}
|
||
|
?>
|