Skip to content

Commit

Permalink
Initialized gcs config by environment variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
mamor committed Feb 2, 2020
1 parent 7d3e7d4 commit ea253cd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config/backup-manager.php
Expand Up @@ -15,11 +15,11 @@
],
'gcs' => [
'type' => 'Gcs',
'project' => '',
'keyFilePath' => '',
'bucket' => '',
'project' => env('GOOGLE_CLOUD_PROJECT_ID', 'your-project-id'),
'keyFilePath' => env('GOOGLE_CLOUD_KEY_FILE', null),
'bucket' => env('GOOGLE_CLOUD_STORAGE_BUCKET', 'your-bucket'),
'root' => '',
'prefix' => '',
'prefix' => env('GOOGLE_CLOUD_STORAGE_PATH_PREFIX', null),
],
'rackspace' => [
'type' => 'Rackspace',
Expand Down

0 comments on commit ea253cd

Please sign in to comment.