import { PeasConfigType } from "@/lib/peas.config"; const PeasConfig: PeasConfigType = { // Server Config serverName: "Peas Server", serverDescription: "Peas SNS", serverHost: "peas.example.com", // SSL Config ssl: { ssl: false, }, // SMTP Config smtpHost: "mail.example.com", smtpPort: 587, smtpSecure: false, smtpUser: "info@mail.example.com", smtpPassword: "SMTPMailPassword", // Database Config databaseHost: "db.example.com", databasePort: 3306, databaseUser: "peas", databasePassword: "DatabasePassword", databaseDB: "peas", }; export default PeasConfig;