update deps

This commit is contained in:
Max Erenberg 2023-07-31 19:27:45 -04:00
parent e0ed4fa23a
commit 7e851daa8f
6 changed files with 18 additions and 18 deletions

View File

@ -183,7 +183,7 @@ replaced by coffee).
To run ceod on a single host (as root, since the app needs to read the keytab):
```sh
export FLASK_APP=ceod.api
export FLASK_ENV=development
export FLASK_DEBUG=true
flask run -h 0.0.0.0 -p 9987
```

View File

@ -74,7 +74,7 @@ def create_app(flask_config={}):
def register_services(app):
# Config
if app.config.get('ENV') == 'development' and 'CEOD_CONFIG' not in os.environ:
if app.config.get('DEBUG') and 'CEOD_CONFIG' not in os.environ:
with importlib.resources.path('tests', 'ceod_dev.ini') as p:
config_file = p.__fspath__()
else:

View File

@ -139,7 +139,7 @@ def create_streaming_response(txn: AbstractTransaction):
def development_only(f: Callable) -> Callable:
@functools.wraps(f)
def wrapper(*args, **kwargs):
if current_app.config.get('ENV') == 'development' or \
if current_app.config.get('DEBUG') or \
current_app.config.get('TESTING'):
return f(*args, **kwargs)
return {

View File

@ -1,6 +1,6 @@
flake8==5.0.4
setuptools==65.4.1
wheel==0.37.1
pytest==7.1.3
flake8==6.1.0
setuptools==68.0.0
wheel==0.41.0
pytest==7.4.0
aiosmtpd==1.4.2
aiohttp==3.8.3
aiohttp==3.8.5

View File

@ -8,7 +8,7 @@ x-common: &common
- label:disable
environment:
FLASK_APP: ceod.api
FLASK_ENV: development
FLASK_DEBUG: "true"
working_dir: $PWD
entrypoint:
- ./docker-entrypoint.sh

View File

@ -1,16 +1,16 @@
click==8.1.3
cryptography==35.0.0
Flask==2.1.2
gssapi==1.6.14
gunicorn==20.1.0
click==8.1.6
cryptography==41.0.2
Flask==2.3.2
gssapi==1.8.2
gunicorn==21.2.0
Jinja2==3.1.2
ldap3==2.9.1
mysql-connector-python==8.0.26
psycopg2-binary==2.9.1
mysql-connector-python==8.1.0
psycopg2-binary==2.9.6
python-augeas==1.1.0
requests==2.26.0
requests==2.31.0
requests-gssapi==1.2.3
urwid==2.1.2
Werkzeug==2.1.2
Werkzeug==2.3.6
zope.component==5.0.1
zope.interface==5.4.0