mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Fallback to AWS_BUCKET env var in settings for backwards compatiblity
This commit is contained in:
parent
a18146612a
commit
e4d7c253c0
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ const Settings = {
|
|||
healthCheck: {
|
||||
project_id: process.env.HEALTH_CHECK_PROJECT_ID
|
||||
},
|
||||
bucket: process.env.BUCKET_NAME || 'bucket',
|
||||
bucket: process.env.BUCKET_NAME || process.env.AWS_BUCKET || 'bucket',
|
||||
gcs: {
|
||||
unlockBeforeDelete: process.env.GCS_UNLOCK_BEFORE_DELETE === 'true',
|
||||
deletedBucketSuffix: process.env.GCS_DELETED_BUCKET_SUFFIX,
|
||||
|
|
Loading…
Reference in a new issue