try oscrypto 1.3.0

This commit is contained in:
Kenneth Kehl
2025-05-28 07:55:50 -07:00
parent 96bb7f24d0
commit b976b395c6
2 changed files with 454 additions and 444 deletions

View File

@@ -18,7 +18,8 @@ bootstrap: ## Set up everything to run the app
make generate-version-file
rm poetry.lock
poetry lock
poetry install --sync --no-root
poetry install --no-root
poetry sync
poetry run pre-commit install
createdb notification_api || true
createdb test_notification_api || true
@@ -29,7 +30,8 @@ bootstrap-with-git-hooks: ## Sets everything up and accounts for pre-existing g
make generate-version-file
rm poetry.lock
poetry lock
poetry install --sync --no-root
poetry install --no-root
poetry sync
git config --global --unset-all core.hooksPath
poetry run pre-commit install
git config --global core.hookspath "${GIT_HOOKS_PATH}"