Frederico Falcao f2a6525224 init
2025-05-30 10:46:17 +01:00

17 lines
433 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/*
* FILE: 01_contants.php
* Description: Support functions that can be used across the app
*/
$repoDir = "/ExtraSpace/admin.growfit.fi/tech";
$passwordFile = __DIR__ . '/passwords.json.enc'; // Encrypted JSON file
/*
| Encryption key (32+ random chars is best).
| - Leave empty ("") if youre happy with **plain-text** storage.
| - Change it to rotate keys; old file becomes unreadable.
*/
$passwordKey = "";
?>