@webda/core
Version:
Expose API with Lambda
69 lines (68 loc) • 1.49 kB
JSON
{
"version": 1,
"parameters": {
"TEST": "Global",
"region": "us-east-1",
"website": ["test.webda.io", "test2.webda.io"],
"locales": ["es-ES", "en-GB", "fr-FR"]
},
"moddas": {
"Test/Mailer": {
"type": "local",
"require": "../test/moddas/debugmailer"
},
"Test/VoidStore": {
"type": "local",
"require": "../test/moddas/voidstore"
}
},
"models": {
"WebdaTest/Task": "../test/models/task",
"WebdaTest/Ident": "../test/models/ident"
},
"services": {
"Authentication": {
"successRedirect": "https://webda.io/user.html",
"failureRedirect": "/login-error",
"providers": {
"facebook": {},
"email": {
"from": "",
"subject": "",
"html": "",
"text": "Test",
"mailer": "DefinedMailer",
"postValidation": false
},
"phone": {},
"twitter": {},
"google": {},
"github": {}
}
},
"DefinedMailer": {
"type": "WebdaTest/Mailer"
},
"Users": {
"type": "MemoryStore"
},
"Idents": {
"type": "MemoryStore"
},
"FileConfigurationService": {
"type": "Webda/FileConfiguration",
"source": "./my-cnf.json",
"default": {
"services": {
"Authentication": {
"providers": {
"email": {
"text": "Test"
}
}
}
}
}
}
}
}