diff --git a/.gitignore b/.gitignore index 2f14d8a..b7c8d14 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ deluge/config deluge/downloads **/healthcheck.json **/config.json +__pycache__ diff --git a/.python-version b/.python-version index b326afb..d2c96c0 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.9.15 +3.11.3 diff --git a/README.md b/README.md index 22fc9ec..000612e 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,8 @@ |[Plex](./services/plex)|Plex media server| |[Deluge](./services/deluge)|Deluge Web service| |[Traefik](./services/traefik)|Traefik API Gateway| +|[Monolith](./services/monolith)|Usercode monolith| +|[Bitwarden](./services/bitwarden)|Bitwarden secrets management| ## Getting started diff --git a/requirements.txt b/requirements.txt index 6947247..d31b4dd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ # -# This file is autogenerated by pip-compile with python 3.9 -# To update, run: +# This file is autogenerated by pip-compile with Python 3.9 +# by the following command: # # pip-compile ./requirements.in # diff --git a/script/bootstrap b/script/bootstrap index f7fcbf6..6e67930 100644 --- a/script/bootstrap +++ b/script/bootstrap @@ -2,7 +2,7 @@ VENV="spadinaistan.venv" -python -m pip install pip==22.3 pip-tools==6.9.0 --no-cache +python -m pip install pip~=23.1 pip-tools==6.13.0 --no-cache if [ ! -d "./$VENV" ]; then python -m venv ./$VENV