This is primarily meant to be used via 3rd party applications (like the Blender Cloud). The external software requires a bundle, and if was already build it gets served a local filesystem path, that can be further used. Otherwise the bundle is built.
7 lines
193 B
Plaintext
7 lines
193 B
Plaintext
class Config:
|
|
DEBUG = True
|
|
|
|
class Development(Config):
|
|
STORAGE_BUNDLES = '/tmp/bam_storage_bundles'
|
|
ALLOWED_EXTENSIONS = {'txt', 'mp4', 'png', 'jpg', 'jpeg', 'gif', 'blend', 'zip'}
|