|
- <?php
-
- declare(strict_types=1);
-
- return [
- 'host' => getenv('PRINTSTREAM_HOST') ?: '',
- 'port' => (int) (getenv('PRINTSTREAM_PORT') ?: 1433),
- 'database' => getenv('PRINTSTREAM_DATABASE') ?: '',
- 'user' => getenv('PRINTSTREAM_USER') ?: '',
- 'password' => getenv('PRINTSTREAM_PASSWORD') ?: '',
-
- // Interval used by the cron schedule comment — actual schedule is in docker/crontab
- 'import_every_minutes' => (int) (getenv('IMPORT_RUN_EVERY_MINUTES') ?: 30),
- ];
|