raspisms/console.php

13 lines
394 B
PHP
Raw Permalink Normal View History

2019-10-29 14:57:13 +01:00
#!/usr/bin/php
<?php
2019-10-29 18:34:37 +01:00
require_once(__DIR__ . '/descartes/load.php');
2019-10-29 14:57:13 +01:00
2019-10-29 18:34:37 +01:00
#####################
# RASPISMS SETTINGS #
#####################
2019-11-08 19:17:47 +01:00
$bdd = \descartes\Model::_connect(DATABASE_HOST, DATABASE_NAME, DATABASE_USER, DATABASE_PASSWORD);
2019-10-29 18:34:37 +01:00
$internal_setting = new \controllers\internals\Setting($bdd);
2019-10-29 14:57:13 +01:00
2019-10-29 18:34:37 +01:00
//Execute command
descartes\Console::execute_command($argv);