Added FILE_STORAGE path

This commit is contained in:
Eibriel 2015-04-24 06:40:48 -03:00
parent e26b87857c
commit 74e875a338

View File

@ -1,3 +1,6 @@
import os
class Config(object):
# Configured for GMAIL
MAIL_SERVER = ''
@ -31,3 +34,5 @@ class Development(Config):
MEDIA_URL = ''
MEDIA_THUMBNAIL_FOLDER = ''
MEDIA_THUMBNAIL_URL = ''
FILE_STORAGE = '{0}/application/static/storage'.format(
os.path.join(os.path.dirname(__file__)))