-
Notifications
You must be signed in to change notification settings - Fork 900
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3389638
commit 96d6647
Showing
11 changed files
with
34 additions
and
8 deletions.
There are no files selected for viewing
Binary file not shown.
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,3 @@ | ||
import os | ||
AWS_ACCESS_KEY_ID = os.environ.get("AWS_ACCESS_KEY_ID", "AKIAI7CMDWSUQZA33PBQ") | ||
AWS_SECRET_ACCESS_KEY = os.environ.get("AWS_SECRET_ACCESS_KEY", "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") |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
from storages.backends.s3boto3 import S3Boto3Storage | ||
|
||
StaticRootS3BotoStorage = lambda: S3Boto3Storage(location='static') | ||
MediaRootS3BotoStorage = lambda: S3Boto3Storage(location='media') | ||
MediaRootS3BotoStorage = lambda: S3Boto3Storage(location='media') | ||
ProtectedS3Storage = lambda: S3Boto3Storage(location='protected') |
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
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
Binary file added
BIN
+149 KB
static_cdn/protected_media/product/my-awesome-album/basic_audio_5W1qjNh_Ntvw9l5.m4a
Binary file not shown.
Binary file added
BIN
+149 KB
static_cdn/protected_media/product/my-awesome-album/basic_audio_DwLL00o.m4a
Binary file not shown.
Binary file added
BIN
+149 KB
static_cdn/protected_media/product/my-awesome-album/basic_audio_uuyWQIO_soaLtH9.m4a
Binary file not shown.
96d6647
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed that both AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY have different corresponding values between the two files src/ecommerce/aws/conf.py and src/ecommerce/aws/ignore.py. For those of us coding along, are we supposed to have different keys between our files named like that or is this something that happened for a different reason only with this project?