mirror of
https://github.com/fergalmoran/dss.api.git
synced 2026-01-05 16:15:44 +00:00
10 lines
299 B
Python
10 lines
299 B
Python
from dss import localsettings
|
|
import os
|
|
|
|
print("Importing storage settings")
|
|
|
|
AZURE_ACCOUNT_NAME = os.environ.get('CDN_NAME', 'dsscdn')
|
|
AZURE_CONTAINER = 'media'
|
|
AZURE_ACCOUNT_KEY = localsettings.AZURE_ACCOUNT_KEY
|
|
AZURE_ITEM_BASE_URL = 'https://{}.blob.core.windows.net/'.format(AZURE_ACCOUNT_NAME)
|