Skip to content

Commit

Permalink
Merge branch 'dev' into fix/invite-transaction
Browse files Browse the repository at this point in the history
  • Loading branch information
ztmbuilds authored Mar 1, 2025
2 parents de09e5a + bdf6865 commit dad620c
Show file tree
Hide file tree
Showing 48 changed files with 22,046 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 dad620c

Please sign in to comment.