expressCart/config/settings.json

47 lines
1.3 KiB
JSON
Raw Normal View History

2018-01-07 22:39:53 +10:00
{
"cartTitle": "CLOTH",
"cartDescription": "expressCart",
"cartLogo": "",
"baseUrl": "http://localhost:1111",
"emailHost": "smtp-mail.outlook.com",
2018-01-11 06:20:52 +10:00
"emailPort": 587,
2018-01-07 22:39:53 +10:00
"emailSecure": false,
"emailUser": "hi@markmoffat.com",
"emailPassword": "this_is_the_smtp_password",
"emailAddress": "hi@markmoffat.com",
2018-01-11 06:20:52 +10:00
"menuEnabled": true,
"productsPerRow": 3,
"productsPerPage": 6,
2018-01-07 22:39:53 +10:00
"menuTitle": "Menu",
"footerHtml": "<h4 class="text-center">Powered by expressCart</h4>",
"googleAnalytics": "",
2020-01-07 20:51:03 +10:00
"injectJs": "",
2020-01-08 20:24:41 +10:00
"customCss": "",
2018-01-07 22:39:53 +10:00
"currencySymbol": "£",
2018-01-11 06:20:52 +10:00
"paymentGateway": "stripe",
2018-02-05 23:29:16 +10:00
"databaseConnectionString": "mongodb://127.0.0.1:27017/expresscart",
2019-02-09 14:07:02 +10:00
"theme": "Cloth",
2019-11-03 09:18:34 +10:00
"trackStock": false,
"orderHook": "",
"availableLanguages": [
"en",
"it"
],
2020-01-03 18:21:24 +10:00
"defaultLocale": "en",
"maxQuantity": 25,
2020-01-23 22:03:21 +10:00
"twitterHandle": "",
"facebookAppId": "",
2020-03-25 15:13:45 +10:00
"productOrderBy": "date",
"productOrder": "descending",
2020-01-03 18:21:24 +10:00
"modules": {
"enabled": {
"shipping": "shipping-basic",
"discount": "discount-voucher"
},
"loaded": {
"shipping": {},
"discount": {}
2020-01-03 18:21:24 +10:00
}
2020-03-22 14:44:45 +10:00
},
"showRelatedProducts": true
}