Files
harmony-back/config/plugins.ts
julien vdb a928acb7d2
All checks were successful
Build release Docker image / Build Docker Images (push) Successful in 6m47s
0.12.8 : add activity and notification after user creation
2025-11-21 13:50:05 +01:00

46 lines
980 B
TypeScript

export default () => ({
email: {
config: {
provider: "nodemailer",
providerOptions: {
host: "mail.harmonychoral.com",
port: 465,
auth: {
user: "admin@harmonychoral.com",
pass: "Apslxnap12bn23",
},
},
settings: {
defaultFrom: "admin@harmonychoral.com",
defaultReplyTo: "admin@harmonychoral.com",
},
},
},
upload: {
config: {
provider: "aws-s3",
providerOptions: {
baseUrl: "https://container.harmonylab.ovh/harmony",
credentials: {
accessKeyId: "admin",
secretAccessKey: "Apslxnap12bn23",
},
endpoint: "https://container.harmonylab.ovh",
forcePathStyle: true,
region: "eu-west-3",
params: {
Bucket: "harmony",
},
},
},
},
"strapi-v5-plugin-populate-deep": {
config: {
defaultDepth: 3,
skipCreatorFields: false,
},
},
});