mirror of
https://github.com/xevidos/codiad.git
synced 2024-11-10 21:26:35 +01:00
16 lines
332 B
PHP
Executable File
16 lines
332 B
PHP
Executable File
<?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(
|
|
|
|
);
|
|
}
|
|
?>
|