Added FILE_STORAGE path
This commit is contained in:
parent
e26b87857c
commit
74e875a338
@ -1,3 +1,6 @@
|
||||
import os
|
||||
|
||||
|
||||
class Config(object):
|
||||
# Configured for GMAIL
|
||||
MAIL_SERVER = ''
|
||||
@ -19,15 +22,17 @@ class Config(object):
|
||||
|
||||
|
||||
class Development(Config):
|
||||
SECRET_KEY=''
|
||||
#SERVER_NAME='attract.local:5555'
|
||||
HOST='0.0.0.0'
|
||||
PORT=5000
|
||||
DEBUG=True
|
||||
SQLALCHEMY_DATABASE_URI=''
|
||||
SECURITY_REGISTERABLE=True
|
||||
SECRET_KEY = ''
|
||||
#SERVER_NAME = 'attract.local:5555'
|
||||
HOST = '0.0.0.0'
|
||||
PORT = 5000
|
||||
DEBUG = True
|
||||
SQLALCHEMY_DATABASE_URI = ''
|
||||
SECURITY_REGISTERABLE = True
|
||||
SECURITY_LOGIN_USER_TEMPLATE = 'security/login_user.html'
|
||||
MEDIA_FOLDER = ''
|
||||
MEDIA_URL = ''
|
||||
MEDIA_THUMBNAIL_FOLDER = ''
|
||||
MEDIA_THUMBNAIL_URL = ''
|
||||
FILE_STORAGE = '{0}/application/static/storage'.format(
|
||||
os.path.join(os.path.dirname(__file__)))
|
||||
|
Loading…
x
Reference in New Issue
Block a user