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
264 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'}
SQLALCHEMY_DATABASE_URI = 'database://username:password@server/db'