annotate scripts/Docker/requirements.txt @ 8443:39a6825d10ca

feat: allow admin to set logging format from config.ini This is prep work for adding a per thread logging variable that can be used to tie all logs for a single request together. This uses the same default logging format as before, just moves it to config.ini. Also because of configparser, the logging format has to have doubled % signs. So use: %%(asctime)s not '%(asctime)s' as configparser tries to interpolate that string and asctime is not defined in the configparser's scope. Using %%(asctime)s is not interpolated by configparser and is passed into Roundup.
author John Rouillard <rouilj@ieee.org>
date Mon, 01 Sep 2025 21:54:48 -0400
parents 61ffdc71cf46
children 2c59d8deb653
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8115
61ffdc71cf46 chore: update to newest 3.12 alpine image
John Rouillard <rouilj@ieee.org>
parents: 7315
diff changeset
1 # setuptools required for installation - missing from newer base images
61ffdc71cf46 chore: update to newest 3.12 alpine image
John Rouillard <rouilj@ieee.org>
parents: 7315
diff changeset
2 setuptools
6520
26babdf85067 issue2551163 - add starter docker
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
3 # human timezones
26babdf85067 issue2551163 - add starter docker
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
4 pytz
26babdf85067 issue2551163 - add starter docker
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
5 # indexer
26babdf85067 issue2551163 - add starter docker
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
6 Whoosh
7315
b8e88d4ca95b Add redis library to docker image; mention xapian is installed
John Rouillard <rouilj@ieee.org>
parents: 7050
diff changeset
7 # xapian is also installed
6522
e6ae8188f61a issue2551163 Docker/containerization support
John Rouillard <rouilj@ieee.org>
parents: 6520
diff changeset
8 # extra database support
e6ae8188f61a issue2551163 Docker/containerization support
John Rouillard <rouilj@ieee.org>
parents: 6520
diff changeset
9 psycopg2
e6ae8188f61a issue2551163 Docker/containerization support
John Rouillard <rouilj@ieee.org>
parents: 6520
diff changeset
10 mysqlclient
7315
b8e88d4ca95b Add redis library to docker image; mention xapian is installed
John Rouillard <rouilj@ieee.org>
parents: 7050
diff changeset
11 redis
6522
e6ae8188f61a issue2551163 Docker/containerization support
John Rouillard <rouilj@ieee.org>
parents: 6520
diff changeset
12 # encryption
e6ae8188f61a issue2551163 Docker/containerization support
John Rouillard <rouilj@ieee.org>
parents: 6520
diff changeset
13 gpg
6520
26babdf85067 issue2551163 - add starter docker
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
14 # java web tokens
6522
e6ae8188f61a issue2551163 Docker/containerization support
John Rouillard <rouilj@ieee.org>
parents: 6520
diff changeset
15 PyJWT
e6ae8188f61a issue2551163 Docker/containerization support
John Rouillard <rouilj@ieee.org>
parents: 6520
diff changeset
16 # extra HTTP compression methods
e6ae8188f61a issue2551163 Docker/containerization support
John Rouillard <rouilj@ieee.org>
parents: 6520
diff changeset
17 Brotli
e6ae8188f61a issue2551163 Docker/containerization support
John Rouillard <rouilj@ieee.org>
parents: 6520
diff changeset
18 zstd
7050
889ddfbf8abe Add jinja2 library
John Rouillard <rouilj@ieee.org>
parents: 6555
diff changeset
19 # jinja2 template engine
889ddfbf8abe Add jinja2 library
John Rouillard <rouilj@ieee.org>
parents: 6555
diff changeset
20 Jinja2

Roundup Issue Tracker: http://roundup-tracker.org/