Skip to content

Commit

Permalink
fix: DATASTORE in S3 env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
azf20 committed Jan 11, 2025
1 parent f749808 commit 1035e4c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ export const FILE_DATASTORE_PATH = process.env.FILE_DATASTORE_PATH ?? undefined
*/
export const FILE_BLOCKSTORE_PATH = process.env.FILE_BLOCKSTORE_PATH ?? undefined

export const S3_BUCKET = process.env.S3_DATASTORE_BUCKET ?? undefined
export const S3_BUCKET = process.env.S3_BUCKET ?? undefined

export const S3_ENDPOINT = process.env.S3_DATASTORE_ENDPOINT ?? undefined
export const S3_ENDPOINT = process.env.S3_ENDPOINT ?? undefined

export const S3_ACCESS_KEY_ID = process.env.S3_DATASTORE_ACCESS_KEY_ID ?? ''
export const S3_ACCESS_KEY_ID = process.env.S3_ACCESS_KEY_ID ?? ''

export const S3_SECRET_ACCESS_KEY = process.env.S3_DATASTORE_SECRET_ACCESS_KEY ?? ''
export const S3_SECRET_ACCESS_KEY = process.env.S3_SECRET_ACCESS_KEY ?? ''

export const AWS_REGION = process.env.AWS_REGION ?? 'us-east-1'

Expand Down

0 comments on commit 1035e4c

Please sign in to comment.