8 lines
251 B
Plaintext
8 lines
251 B
Plaintext
class Config(object):
|
|
DEBUG=True
|
|
|
|
class Development(Config):
|
|
STORAGE_PATH='/Volumes/PROJECTS/storage'
|
|
UPLOAD_FOLDER = '/Volumes/PROJECTS/storage_staging'
|
|
ALLOWED_EXTENSIONS = {'txt', 'mp4', 'png', 'jpg', 'jpeg', 'gif', 'blend', 'zip'}
|