feat: Add secrets configuration for compatibility

Introduces a secrets file to ensure compatibility with the
rottenwheel fork. This includes a placeholder for the
CoinGecko API key and a flag indicating a demo key.

No functional changes intended.
This commit is contained in:
Kumi 2024-11-27 13:05:35 +01:00
parent 2ccf5e1119
commit 9b14692e47
No known key found for this signature in database
GPG key ID: ECBCC9082395383F

8
secrets.php Normal file
View file

@ -0,0 +1,8 @@
<?php
// Just here for compatibility with the rottenwheel fork
return [
'coingecko_api_key' => 'CG-xxxx',
'coingecko_key_is_demo' => true,
];