- Full gg.deals-style UI: deal feed with filters, game pages with price history charts, rankings, vouchers, news, prepaids, subscriptions, bundles, franchises, wishlist, API docs - Real data crawlers: * gg:crawl (Steam Store API + GOG Catalog + Epic free games) * gg:catalog (252K game slugs from gg.deals sitemaps) * gg:ggdeals (per-game prices via FlareSolverr session, JSON-LD parsing) * gg:seed / gg:crawl-covers (demo seed + Steam CDN cover art) - 24/7 self-updating scheduler (scripts/scheduler_loop.php, lockfile-protected) - Tailwind v4 dark/light theme, Alpine.js, Chart.js
33 lines
1008 B
PHP
33 lines
1008 B
PHP
<?php
|
|
|
|
namespace Config;
|
|
|
|
/**
|
|
* Optimization Configuration.
|
|
*
|
|
* NOTE: This class does not extend BaseConfig for performance reasons.
|
|
* So you cannot replace the property values with Environment Variables.
|
|
*
|
|
* WARNING: Do not use these options when running the app in the Worker Mode.
|
|
*/
|
|
class Optimize
|
|
{
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Config Caching
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* @see https://codeigniter.com/user_guide/concepts/factories.html#config-caching
|
|
*/
|
|
public bool $configCacheEnabled = false;
|
|
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Config Caching
|
|
* --------------------------------------------------------------------------
|
|
*
|
|
* @see https://codeigniter.com/user_guide/concepts/autoloader.html#file-locator-caching
|
|
*/
|
|
public bool $locatorCacheEnabled = false;
|
|
}
|