22 lines
584 B
TypeScript
22 lines
584 B
TypeScript
import { Sequelize } from "sequelize";
|
|
|
|
export class Utility {
|
|
static sequelize: Sequelize;
|
|
static appPort: number = 3000;
|
|
static models: any;
|
|
static fileConfig: any = {"storagePath": "./uploads"};
|
|
static mailConfig: any = {
|
|
"transport": {
|
|
"host": "smtppro.zoho.in",
|
|
"secure": true,
|
|
"port": 465,
|
|
"auth": {
|
|
"user": "admin@wct.co.in",
|
|
"pass": "Wastecare@123"
|
|
}
|
|
},
|
|
"defaults": {
|
|
"from": "\"No Reply\" <admin@wct.co.in>"
|
|
}
|
|
};
|
|
} |