Skip to content
Snippets Groups Projects
release.cfg 1.1 KiB
Newer Older
[buildout]
extends = common.cfg
parts += uwsgi
always-checkout = force
eggs-directory = .buildout/eggs
download-cache = .buildout/download-cache
abi-tag-eggs = true
develop = src/beat.backend.python
          src/beat.core
          src/beat.cmdline
django = >=3.0,<4.0
[scripts]
eggs = ${buildout:eggs}
interpreter = python

[sources]
beat.core = git https://gitlab.idiap.ch/beat/beat.core.git rev=v1.10.7
beat.cmdline = git https://gitlab.idiap.ch/beat/beat.cmdline.git rev=v1.8.2
beat.backend.python = git https://gitlab.idiap.ch/beat/beat.backend.python.git rev=v1.7.11

[uwsgi]
recipe = buildout.recipe.uwsgi
output-format=ini
eggs = ${buildout:eggs}
use-system-binary = true
config-master = true
config-processes = 5
config-socket = /var/run/beat/uwsgi.sock
config-chmod-socket = 666
config-env = DJANGO_SETTINGS_MODULE=beat.web.settings.production
          PYTHON_EGG_CACHE=/tmp
config-module = django.core.wsgi:get_wsgi_application()
config-vacuum = true
config-plugins = python3

[django]
settings = web.settings.production
eggs = ${buildout:eggs}