Skip to content

Commit

Permalink
Merge branch 'main' into BAI-1299-python-semantic-version-bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
bw27492 authored Jun 11, 2024
2 parents ad8223c + 3af6bd3 commit c17fea5
Show file tree
Hide file tree
Showing 60 changed files with 5,752 additions and 4,137 deletions.
18 changes: 14 additions & 4 deletions backend/config/default.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,17 @@ module.exports = {
subdomain: '',
},
},
cognito: {
identityProviderClient: {
region: 'eu-west-1',
credentials: {
accessKeyId: '',
secretAccessKey: '',
},
},
userPoolId: '',
userIdAttribute: '',
},
},

avScanning: {
Expand Down Expand Up @@ -191,10 +202,9 @@ module.exports = {

s3: {
credentials: {
accessKeyId: 'minioadmin',
secretAccessKey: 'minioadmin',
accessKeyId: '',
secretAccessKey: '',
},

endpoint: 'http://minio:9000',
region: 'ignored',
forcePathStyle: true,
Expand Down Expand Up @@ -226,7 +236,7 @@ module.exports = {
enabled: false,
keyId: '123-456',
KMSClient: {
region: 'eu-west-2',
region: 'eu-west-1',
credentials: {
accessKeyId: 'access',
secretAccessKey: 'secret',
Expand Down
24 changes: 16 additions & 8 deletions backend/config/docker_compose.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,22 @@ module.exports = {
publicKey: '/certs/cert.pem',
},

minio: {
connection: {
endPoint: 'minio',
port: 9000,
useSSL: false,
accessKey: 'minioadmin',
secretKey: 'minioadmin',
region: '',
s3: {
credentials: {
accessKeyId: 'minioadmin',
secretAccessKey: 'minioadmin',
},
endpoint: 'http://minio:9000',
region: 'ignored',
forcePathStyle: true,
rejectUnauthorized: true,

automaticallyCreateBuckets: true,

// Names of buckets that Bailo uses
buckets: {
uploads: 'uploads',
registry: 'registry',
},
},

Expand Down
Loading

0 comments on commit c17fea5

Please sign in to comment.