Skip to content

Commit 46b3d03

Browse files
committed
Added default values for s3 related env vars
1 parent 7286a02 commit 46b3d03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config.env.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
LDAP_BIND_PW = env.get("CONDITIONAL_LDAP_BIND_PW", "")
2828

2929
# S3 information
30-
S3_URI = env.get("S3_URI", "")
31-
S3_BUCKET_ID = env.get("S3_BUCKET_ID", "")
30+
S3_URI = env.get("S3_URI", "https://s3.csh.rit.edu") # URL for where the s3 bucket is hosted
31+
S3_BUCKET_ID = env.get("S3_BUCKET_ID", "major-project-media") # name of the bucket
3232
AWS_ACCESS_KEY_ID = env.get("AWS_ACCESS_KEY_ID", "")
3333
AWS_SECRET_ACCESS_KEY = env.get("AWS_SECRET_ACCESS_KEY", "")
3434

0 commit comments

Comments
 (0)