Skip to content

Commit

Permalink
Merge remote changes into canonone/feat/adding-thread-to-the-comment-…
Browse files Browse the repository at this point in the history
…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
canonone committed Mar 2, 2025
2 parents 9a64df0 + a74926c commit 92d8e3b
Show file tree
Hide file tree
Showing 63 changed files with 22,414 additions and 474 deletions.
13 changes: 10 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ fabric.properties
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore


# DB
data/db/

docker-compose.yml
# User-specific files
*.suo
*.user
Expand Down Expand Up @@ -387,8 +392,8 @@ Temporary Items
.apdisk

# Local
dist
/.env
dist/
.env
/.env.*
*._local.ts

Expand All @@ -400,6 +405,7 @@ dist
*.dev
*.prod


# User specific ignores
todo.txt
/.vscode/
Expand Down Expand Up @@ -432,4 +438,5 @@ package-lock.json
package-lock.json
docker-compose.yml
data/
.dev.env
.dev.env

8 changes: 8 additions & 0 deletions config/s3.config.ts
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 || '',
}));
6 changes: 6 additions & 0 deletions local repo
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.
Loading

0 comments on commit 92d8e3b

Please sign in to comment.