Skip to content

Reading configuration from Database Table #115

Open
@digitlimit

Description

@digitlimit

I wish to store backup-manager configuration to a database table.

 'dropbox' => [
        'type' => 'DropboxV2',
        'token' => env('DROPBOX_TOKEN'),
        'key' => env('DROPBOX_KEY'),
        'secret' => env('DROPBOX_SECRET'),
        'app' => env('DROPBOX_APP'),
        'root' => env('DROPBOX_ROOT'),
    ],
    's3' => [
        'type' => 'AwsS3',
        'key'    => env('AWS_ACCESS_KEY_ID'),
        'secret' => env('AWS_SECRET_ACCESS_KEY'),
        'region' => env('AWS_DEFAULT_REGION'),
        'bucket' => env('AWS_BUCKET'),
        'root'   => '',
    ],

How do I force backup manager to use configuration store in my database table backup_settings

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @digitlimit

        Issue actions

          Reading configuration from Database Table · Issue #115 · backup-manager/laravel