mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
36 lines
1004 B
TypeScript
36 lines
1004 B
TypeScript
import mongoose from "mongoose";
|
|
import { Redis } from "~/server/services/CacheService";
|
|
import EmailService from '@services/EmailService';
|
|
import StripeService from '~/server/services/StripeService';
|
|
|
|
const config = useRuntimeConfig();
|
|
let connection: mongoose.Mongoose;
|
|
|
|
export default async () => {
|
|
|
|
console.log('[SERVER] Initializing');
|
|
|
|
EmailService.createTransport(
|
|
config.EMAIL_SERVICE,
|
|
config.EMAIL_HOST,
|
|
config.EMAIL_USER,
|
|
config.EMAIL_PASS,
|
|
);
|
|
|
|
|
|
StripeService.init(config.STRIPE_SECRET, config.STRIPE_WH_SECRET, false);
|
|
|
|
|
|
if (!connection || connection.connection.readyState == mongoose.ConnectionStates.disconnected) {
|
|
console.log('[DATABASE] Connecting');
|
|
connection = await mongoose.connect(config.MONGO_CONNECTION_STRING);
|
|
console.log('[DATABASE] Connected');
|
|
}
|
|
|
|
console.log('[REDIS] Connecting');
|
|
await Redis.init();
|
|
console.log('[REDIS] Connected');
|
|
|
|
console.log('[SERVER] Completed');
|
|
|
|
}; |