diff --git a/configs/gunicorn_config.py b/configs/gunicorn_config.py --- a/configs/gunicorn_config.py +++ b/configs/gunicorn_config.py @@ -64,7 +64,7 @@ workers = 6 # Gunicorn access log level loglevel = 'info' -# Process name visible in process list +# Process name visible in a process list proc_name = 'rhodecode_vcsserver' # Type of worker class, one of `sync`, `gevent` diff --git a/pyproject.toml b/pyproject.toml --- a/pyproject.toml +++ b/pyproject.toml @@ -50,5 +50,10 @@ ignore = [ # Same as Black. line-length = 120 + [tool.ruff.isort] known-first-party = ["vcsserver"] + +[tool.black] +line-length = 120 +target-version = ['py310', 'py311']