This repository has been archived on 2023-02-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
flamenco-manager/flamenco/server/application/config.py.example
T
2015-04-09 08:40:37 -03:00

12 lines
365 B
Plaintext

import os
class Config(object):
SQLALCHEMY_DATABASE_URI='sqlite:///' + os.path.join(os.path.dirname(__file__), '../server.sqlite')
DEBUG=True
PORT=9999
HOST='0.0.0.0' # or 'localhost'
TMP_FOLDER = '/tmp/'
THUMBNAIL_EXTENSIONS = set(['png'])
SERVER_STORAGE = '{0}/static/storage'.format(
os.path.join(os.path.dirname(__file__)))