Skip to content

Commit

Permalink
chore(config): add spaces config to template
Browse files Browse the repository at this point in the history
  • Loading branch information
Clayderson Ferreira authored and thetutlage committed Sep 19, 2018
1 parent 6c35ced commit 383a5a4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions examples/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,23 @@ module.exports = {
secret: Env.get('S3_SECRET'),
bucket: Env.get('S3_BUCKET'),
region: Env.get('S3_REGION')
},

/*
|--------------------------------------------------------------------------
| DigitalOcean Spaces
|--------------------------------------------------------------------------
|
| Spaces disk interacts with a bucket s3 on DigitalOcean
|
*/
spaces: {
driver: 's3',
key: Env.get('SPACES_KEY'),
secret: Env.get('SPACES_SECRET'),
endpoint: Env.get('SPACES_ENDPOINT'),
bucket: Env.get('SPACES_BUCKET'),
region: Env.get('SPACES_REGION')
}
}
}

0 comments on commit 383a5a4

Please sign in to comment.