"""Static files related settingsSee https://docs.djangoproject.com/en/1.10/howto/static-files/ for refs"""importosfrom.baseimportBASE_DIR# Url to get static filesSTATIC_URL="/static/"# Directory of static files (used by collectstatic)STATIC_ROOT=os.path.join(BASE_DIR,"static","static_root")# Additionaly to apps/static dirs, files in staticfiles_dirs will be copied# by collectstaticSTATICFILES_DIRS=(os.path.join(BASE_DIR,"static","build"),)MEDIA_URL="/media/"MEDIA_ROOT=os.path.join(BASE_DIR,"static","media")