mirror of
https://github.com/fergalmoran/dss.api.git
synced 2025-12-25 02:38:54 +00:00
8 lines
262 B
Python
8 lines
262 B
Python
from dss import localsettings
|
|
import os
|
|
|
|
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)
|