This commit is contained in:
Dwi Swandhana
2026-08-01 12:15:25 +07:00
parent 410916f963
commit 119f73403e
8 changed files with 933 additions and 301 deletions

No files matched your search

+16
View File
@@ -0,0 +1,16 @@
<?php
return [
'api_url' => env('CLOUD_BACKUP_API_URL', 'https://duidev.com'),
'api_token' => env('CLOUD_BACKUP_API_TOKEN'),
'backup_name' => env('CLOUD_BACKUP_NAME', 'lismikro'),
'chunk_size' => (int) env('CLOUD_BACKUP_CHUNK_SIZE', 5 * 1024 * 1024),
'download_path' => env('CLOUD_BACKUP_DOWNLOAD_PATH', storage_path('app/cloud-backups/lismikro_latest.backup')),
'pg_restore' => env('CLOUD_BACKUP_PG_RESTORE', 'pg_restore'),
'db_host' => env('CLOUD_BACKUP_DB_HOST', '10.10.123.193'),
'db_port' => env('CLOUD_BACKUP_DB_PORT', '5002'),
'db_database' => env('CLOUD_BACKUP_DB_DATABASE', 'lismikro'),
'db_username' => env('CLOUD_BACKUP_DB_USERNAME', 'lismikro'),
'db_password' => env('CLOUD_BACKUP_DB_PASSWORD'),
];