The developer-controlled Cadline repos (cadcommonlib, maintenance) become git submodules so updates flow through: git submodule update --remote -> build -> commit new pointers. Pinned to their authoritative HEADs. build-baseline.sh inits the submodules and normalizes their CRLF to LF (the deploy transform) so the assembled baseline byte-matches the deployed form. constants.php (live-only config, not in the repo; carries a DB credential tracked in the credential inventory) is kept as an overlay (overrides/) per instruction — removal happens at source later. Signed-off-by: LÁZÁR Imre <imre@illusion.hu> Assisted-by: claude-code@claude-opus-4-8
10 lines
266 B
PHP
10 lines
266 B
PHP
<?php
|
|
|
|
class Constants
|
|
{
|
|
const IPLOCATE_API_KEY = '4e526f4ecd85e1b3b4281e72972228e6';
|
|
const DB_HOST = '192.168.25.39';
|
|
const DB_USER = 'cadline';
|
|
const DB_PASSWORD = 'Shea6hoo';
|
|
const DB_NAME = 'cl_hlusers';
|
|
} |