Fixed partials and overrides. Added analytics and meta blocks to header.

This commit is contained in:
g_it 2026-02-02 20:38:05 +01:00
commit 407ff4b6e9
Signed by untrusted user who does not match committer: g_it
GPG key ID: A2B0A7C06A054627
85 changed files with 77 additions and 11880 deletions

5
.envrc
View file

@ -21,14 +21,13 @@ fi
# Run pip to update packages inside the venv
echo "Running pip update..."
"$VIRTUAL_ENV/bin/python3.14" -m pip install --upgrade pip
"$VIRTUAL_ENV/bin/python3.14" -m pip install --no-cache-dir -r requirements.txt
"$VIRTUAL_ENV/bin/python3.14" -m pip install --no-cache-dir --upgrade $(pip list --format=freeze | grep -v '^\-e' | cut -d = -f 1 | tr '\n' ' ')
"$VIRTUAL_ENV/bin/python3.14" -m pip freeze > requirements.txt
sed -E -i '' 's/==/>=/1' requirements.txt
# Update requirements.txt with pinned versions only if installs succeeded
if [[ $? -eq 0 ]]; then
"$VIRTUAL_ENV/bin/python3.14" -m pip freeze > requirements.txt
echo "Packages updated successfully"
echo "Packages updated successfully"
else
echo "pip install failed; requirements.txt not updated"
fi