-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.php.dist
More file actions
executable file
·28 lines (24 loc) · 872 Bytes
/
Config.php.dist
File metadata and controls
executable file
·28 lines (24 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
namespace Collins\ShopApi;
/**
* Contains configuration data needed for app development.
*
* @author Antevorte GmbH
*/
abstract class Config
{
// Live API
//const ENTRY_POINT_URL = 'http://ant-shop-api1.wavecloud.de/api';
// Stage API
const ENTRY_POINT_URL = 'http://ant-core-staging-s-api1.wavecloud.de/api';
const APP_ID = ''; // = App ID from the DevCenter
const APP_PASSWORD = ''; // = App Token from the DevCenter
const ENABLE_LOGGING = true;
const LOGGING_PATH = null;
const LOGGING_TEMPLATE = "Request:\r\n{{request}}\r\n\r\nResponse:\r\n{{response}}";
const IMAGE_URL = 'http://cdn.mary-paul.de/product_images/{{path}}/{{id}}_{{width}}_{{height}}{{extension}}';
const ENABLE_REDIS_CACHE = false;
const REDIS_SCHEME = 'tcp';
const REDIS_HOST = '127.0.0.1';
const REDIS_PORT = 6379;
}