Files
xamxam/src/config.php
Pontoporeia a88e5562f8 fix(config): auto-route test.db locally, posterg.db on production
- config.php: getDatabasePath() detects php built-in CLI server
  (php_sapi_name() === 'cli-server') and routes to test.db; all
  other SAPIs (nginx/fpm) get posterg.db. DB_ENV env-var still
  overrides either way.

- migrate.sh: auto-initialise the target DB from storage/schema.sql
  when the file is absent or has no tables yet. Existing DBs with
  data are left completely untouched (table_count check, no re-run
  of schema on populated DB). Idempotent: safe to run repeatedly.

- justfile: serve still calls migrate (which now handles init too),
  no DB_ENV prefix needed since sapi detection handles routing.
2026-04-01 15:55:12 +02:00

50 lines
1.2 KiB
PHP

<?php
/**
* Configuration for Post-ERG thesis database
* Central location for database paths and environment settings
*/
// Database paths relative to repository root
define('DB_ROOT', __DIR__ . '/..');
// Local dev database (php -S, never committed)
define('DB_TEST_PATH', DB_ROOT . '/storage/test.db');
// Production database (nginx/php-fpm on server)
define('DB_PROD_PATH', DB_ROOT . '/storage/posterg.db');
/**
* Determine which database to use.
*
* - php built-in server (php -S …) → storage/test.db (local dev)
* - everything else (nginx/fpm) → storage/posterg.db (production)
*
* The DB_ENV env-var can still override either way:
* DB_ENV=test → force test.db
* DB_ENV=prod → force posterg.db
*/
function getDatabasePath(): string {
$env = getenv('DB_ENV');
if ($env === 'test') {
return DB_TEST_PATH;
}
if ($env === 'prod') {
return DB_PROD_PATH;
}
// Auto-detect: php built-in CLI server == local development
if (php_sapi_name() === 'cli-server') {
return DB_TEST_PATH;
}
return DB_PROD_PATH;
}
/**
* Check if running in local dev mode
*/
function isTestMode(): bool {
return getDatabasePath() === DB_TEST_PATH;
}