-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup-dist.php
More file actions
48 lines (41 loc) · 1.18 KB
/
Copy pathsetup-dist.php
File metadata and controls
48 lines (41 loc) · 1.18 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
* Hackorama Configuration
*/
return [
// API Configuration
'api' => [
'key' => '', // API key should be set here
'host' => 'https://www.shoporama.dk',
],
// Theme Configuration
'theme' => [
'path' => __DIR__ . '/themes/Alaska2', // Path to theme directory
],
// Local URL Configuration
'local_url' => 'http://localhost:8080', // URL where Hackorama can be accessed
// Cache Configuration
'cache' => [
'enabled' => true,
'ttl' => 3600, // Cache TTL in seconds (1 hour)
'path' => __DIR__ . '/cache',
],
// Image Configuration
'images' => [
'source_url' => 'https://your-domain.dk', // Base URL for downloading images (set to your production site)
'cache_enabled' => true,
],
// Smarty Configuration
'smarty' => [
'version' => 4, // Smarty version (2 or 4)
'compile_dir' => __DIR__ . '/cache/smarty_compile',
'cache_dir' => __DIR__ . '/cache/smarty_cache',
'left_delimiter' => '<{',
'right_delimiter' => '}>',
],
// Debug Configuration
'debug' => [
'enabled' => true,
'show_errors' => true,
],
];