Инициализация проекта
Загрузка проекта на GIT
This commit is contained in:
19
backend/app/config.php
Normal file
19
backend/app/config.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
// Подключение классов базы данных
|
||||
require_once __DIR__ . '/class/database/class_Medoo.php';
|
||||
require_once __DIR__ . '/class/database/class_Database.php';
|
||||
|
||||
// Подключение классов Функций
|
||||
require_once __DIR__ . '/functions/function.php';
|
||||
require_once __DIR__ . '/functions/routing.php';
|
||||
|
||||
// Данные подключения к БД
|
||||
define('DB_HOST', '192.168.1.9');
|
||||
define('DB_USER', 'root');
|
||||
define('DB_PASS', 'root');
|
||||
define('DB_NAME', 'taskboard');
|
||||
define('DB_PORT', 3306);
|
||||
define('DB_CHARSET', 'utf8mb4');
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user