Initial commit: R0Installer source, patch generator, API backend and build scripts
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
// 数据库配置
|
||||
define('DB_TYPE', 'mysql');
|
||||
define('DB_HOST', '127.0.0.1');
|
||||
define('DB_PORT', 3306);
|
||||
define('DB_NAME', 'installer');
|
||||
define('DB_USER', 'installer');
|
||||
define('DB_PASS', 'your-database-password');
|
||||
define('DB_CHARSET', 'utf8mb4');
|
||||
|
||||
// 管理后台账号密码(硬编码)
|
||||
define('ADMIN_USER', 'admin');
|
||||
define('ADMIN_PASS', 'your-admin-password');
|
||||
|
||||
// API Base URL
|
||||
define('API_BASE', '/v3');
|
||||
Reference in New Issue
Block a user