This repository has been archived on 2023-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-asset-manager/webservice/bam/config.py.example

8 lines
251 B
Plaintext
Raw Normal View History

2014-10-23 14:45:21 +02:00
class Config(object):
DEBUG=True
class Development(Config):
STORAGE_PATH='/Volumes/PROJECTS/storage'
2014-10-30 16:47:03 +01:00
UPLOAD_FOLDER = '/Volumes/PROJECTS/storage_staging'
2014-10-30 16:52:04 +01:00
ALLOWED_EXTENSIONS = {'txt', 'mp4', 'png', 'jpg', 'jpeg', 'gif', 'blend', 'zip'}