-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote changes into canonone/feat/adding-thread-to-the-comment-…
…module Integrated updates from the remote branch to resolve a non-fast-forward push error. This merge ensures the local branch includes the latest remote state while preserving the threading feature and resolved conflicts with the delete/dislike features from dev.
- Loading branch information
Showing
63 changed files
with
22,414 additions
and
474 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { registerAs } from '@nestjs/config'; | ||
|
||
export default registerAs('s3', () => ({ | ||
accessKey: process.env.AWS_ACCESS_KEY || '', | ||
secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY || '', | ||
region: process.env.AWS_REGION || 'us-east-2', | ||
bucketName: process.env.AWS_S3_BUCKET_NAME || '', | ||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
gerge branch 'dev' into feat/s3-resume-upload | ||
# Please enter a commit message to explain why this merge is necessary, | ||
# especially if it merges an updated upstream into a topic branch. | ||
# | ||
# Lines starting with '#' will be ignored, and an empty message aborts | ||
# the commit. |
Oops, something went wrong.