feat: project scaffolding, database schema, config
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
28
includes/config.php
Normal file
28
includes/config.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
// Database
|
||||
define('DB_HOST', 'localhost');
|
||||
define('DB_NAME', 'gestoria_lp');
|
||||
define('DB_USER', 'root');
|
||||
define('DB_PASS', '');
|
||||
|
||||
// SMTP (Hostinger)
|
||||
define('SMTP_HOST', 'smtp.hostinger.com');
|
||||
define('SMTP_PORT', 465);
|
||||
define('SMTP_USER', 'contacto@gestorialp.com');
|
||||
define('SMTP_PASS', '');
|
||||
define('SMTP_FROM_NAME', 'Gestoría LP');
|
||||
|
||||
// WhatsApp
|
||||
define('WHATSAPP_NUMBER', '521XXXXXXXXXX');
|
||||
|
||||
// Encryption key for client credentials (32 bytes for AES-256)
|
||||
define('ENCRYPTION_KEY', 'CHANGE_THIS_TO_A_RANDOM_32_CHAR_KEY!');
|
||||
|
||||
// Upload settings
|
||||
define('UPLOAD_DIR', __DIR__ . '/../uploads/');
|
||||
define('MAX_FILE_SIZE', 5 * 1024 * 1024); // 5MB
|
||||
define('ALLOWED_EXTENSIONS', ['pdf', 'jpg', 'jpeg', 'png', 'doc', 'docx']);
|
||||
|
||||
// Site
|
||||
define('SITE_URL', 'https://gestorialp.com');
|
||||
define('SITE_NAME', 'Gestoría LP');
|
||||
Reference in New Issue
Block a user