-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
24 lines (21 loc) · 827 Bytes
/
Copy pathconfig.php
File metadata and controls
24 lines (21 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
// Database
define('DB_HOST', 'localhost');
define('DB_NAME', 'signuptrial');
define('DB_USER', 'root');
define('DB_PASS', '');
// Restaurant info
define('RESTAURANT_NAME', 'Sakura Restaurant');
define('RESTAURANT_TAGLINE', 'Authentic Japanese Dining Experience');
define('RESTAURANT_ADDRESS', '123 Cherry Blossom Ave, Makati City, Metro Manila');
define('RESTAURANT_PHONE', '+63 2 8888 0000');
define('RESTAURANT_EMAIL', 'hello@sakurarestaurant.com');
define('RESTAURANT_HOURS', 'Mon–Sun: 11:00 AM – 10:00 PM');
// Email (SMTP via Gmail)
define('SMTP_HOST', 'smtp.gmail.com');
define('SMTP_PORT', 465);
define('SMTP_USER', 'hello@sakurarestaurant.com');
define('SMTP_PASS', 'your-app-password-here');
// AI (Groq)
define('GROQ_API_KEY', 'your-groq-api-key-here');
define('GROQ_MODEL', 'llama-3.3-70b-versatile');