Skip to content

Commit bef4fd6

Browse files
committed
configure alternative storages
1 parent 83eb59c commit bef4fd6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

demoapp/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
}
122122

123123
if os.getenv('USE_S3', False) in ['1', 'TRUE', 'True', 'true']:
124-
STORAGES['finder_public'] = {
124+
STORAGES['finder_private'] = {
125125
'BACKEND': 'storages.backends.s3.S3Storage',
126126
'OPTIONS': {
127127
'access_key': 'finder',
@@ -130,7 +130,7 @@
130130
'endpoint_url': 'http://localhost:9000',
131131
},
132132
}
133-
STORAGES['finder_public_samples'] = {
133+
STORAGES['finder_private_samples'] = {
134134
'BACKEND': 'storages.backends.s3.S3Storage',
135135
'OPTIONS': {
136136
'access_key': 'finder',

0 commit comments

Comments
 (0)