Skip to content

Commit 29e7b0a

Browse files
add new secrets to .env
1 parent 5a21e77 commit 29e7b0a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.env

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,8 @@ SENTRY_DSN=
4343
# Configure these with your own Docker registry images
4444
DOCKER_IMAGE_BACKEND=backend
4545
DOCKER_IMAGE_FRONTEND=frontend
46+
47+
AWS_ACCESS_KEY_ID=yourkey
48+
AWS_SECRET_ACCESS_KEY=yoursecret
49+
AWS_REGION=us-east-1
50+
S3_BUCKET=your-bucket-name

backend/app/core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def all_cors_origins(self) -> list[str]:
5858
AWS_ACCESS_KEY_ID: str = ""
5959
AWS_SECRET_ACCESS_KEY: str = ""
6060
AWS_REGION: str = "us-east-1"
61-
S3_BUCKET: str = ""
61+
S3_BUCKET: str = "test-bucket"
6262

6363
OPENAI_API_KEY: str = ""
6464

0 commit comments

Comments
 (0)