subscription table shows more than one app

This commit is contained in:
jvved 2025-02-03 13:10:12 -05:00
parent ef5f57e678
commit d3d0806d5a
1841 changed files with 2390 additions and 3359 deletions

19
.gitignore vendored Normal file
View File

@ -0,0 +1,19 @@
# Ignore virtual environment
.venv/
# Byte-compiled / cached files
__pycache__/
*.py[cod]
*.swp
# Logs and databases
*.log
*.sqlite3
# Environment variables and secrets
.env
.DS_Store
# IDE/editor specific files
.vscode/
.idea/

View File

@ -36,17 +36,17 @@ deactivate () {
deactivate nondestructive deactivate nondestructive
# on Windows, a path can contain colons and backslashes and has to be converted: # on Windows, a path can contain colons and backslashes and has to be converted:
if [ "$OSTYPE" = "cygwin" ] || [ "$OSTYPE" = "msys" ] ; then if [ "${OSTYPE:-}" = "cygwin" ] || [ "${OSTYPE:-}" = "msys" ] ; then
# transform D:\path\to\venv to /d/path/to/venv on MSYS # transform D:\path\to\venv to /d/path/to/venv on MSYS
# and to /cygdrive/d/path/to/venv on Cygwin # and to /cygdrive/d/path/to/venv on Cygwin
export VIRTUAL_ENV=$(cygpath "/Users/user/dev/testpks/testpks/.venv") export VIRTUAL_ENV=$(cygpath /home/jvved/dev/testpks/.venv)
else else
# use the path as-is # use the path as-is
export VIRTUAL_ENV="/Users/user/dev/testpks/testpks/.venv" export VIRTUAL_ENV=/home/jvved/dev/testpks/.venv
fi fi
_OLD_VIRTUAL_PATH="$PATH" _OLD_VIRTUAL_PATH="$PATH"
PATH="$VIRTUAL_ENV/bin:$PATH" PATH="$VIRTUAL_ENV/"bin":$PATH"
export PATH export PATH
# unset PYTHONHOME if set # unset PYTHONHOME if set
@ -59,9 +59,9 @@ fi
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
_OLD_VIRTUAL_PS1="${PS1:-}" _OLD_VIRTUAL_PS1="${PS1:-}"
PS1="(.venv) ${PS1:-}" PS1='(.venv) '"${PS1:-}"
export PS1 export PS1
VIRTUAL_ENV_PROMPT="(.venv) " VIRTUAL_ENV_PROMPT='(.venv) '
export VIRTUAL_ENV_PROMPT export VIRTUAL_ENV_PROMPT
fi fi

View File

@ -9,17 +9,17 @@ alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PA
# Unset irrelevant variables. # Unset irrelevant variables.
deactivate nondestructive deactivate nondestructive
setenv VIRTUAL_ENV "/Users/user/dev/testpks/testpks/.venv" setenv VIRTUAL_ENV /home/jvved/dev/testpks/.venv
set _OLD_VIRTUAL_PATH="$PATH" set _OLD_VIRTUAL_PATH="$PATH"
setenv PATH "$VIRTUAL_ENV/bin:$PATH" setenv PATH "$VIRTUAL_ENV/"bin":$PATH"
set _OLD_VIRTUAL_PROMPT="$prompt" set _OLD_VIRTUAL_PROMPT="$prompt"
if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then
set prompt = "(.venv) $prompt" set prompt = '(.venv) '"$prompt"
setenv VIRTUAL_ENV_PROMPT "(.venv) " setenv VIRTUAL_ENV_PROMPT '(.venv) '
endif endif
alias pydoc python -m pydoc alias pydoc python -m pydoc

View File

@ -33,10 +33,10 @@ end
# Unset irrelevant variables. # Unset irrelevant variables.
deactivate nondestructive deactivate nondestructive
set -gx VIRTUAL_ENV "/Users/user/dev/testpks/testpks/.venv" set -gx VIRTUAL_ENV /home/jvved/dev/testpks/.venv
set -gx _OLD_VIRTUAL_PATH $PATH set -gx _OLD_VIRTUAL_PATH $PATH
set -gx PATH "$VIRTUAL_ENV/bin" $PATH set -gx PATH "$VIRTUAL_ENV/"bin $PATH
# Unset PYTHONHOME if set. # Unset PYTHONHOME if set.
if set -q PYTHONHOME if set -q PYTHONHOME
@ -56,7 +56,7 @@ if test -z "$VIRTUAL_ENV_DISABLE_PROMPT"
set -l old_status $status set -l old_status $status
# Output the venv prompt; color taken from the blue of the Python logo. # Output the venv prompt; color taken from the blue of the Python logo.
printf "%s%s%s" (set_color 4B8BBE) "(.venv) " (set_color normal) printf "%s%s%s" (set_color 4B8BBE) '(.venv) ' (set_color normal)
# Restore the return status of the previous command. # Restore the return status of the previous command.
echo "exit $old_status" | . echo "exit $old_status" | .
@ -65,5 +65,5 @@ if test -z "$VIRTUAL_ENV_DISABLE_PROMPT"
end end
set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV"
set -gx VIRTUAL_ENV_PROMPT "(.venv) " set -gx VIRTUAL_ENV_PROMPT '(.venv) '
end end

View File

@ -1,4 +1,4 @@
#!/Users/user/dev/testpks/testpks/.venv/bin/python3.12 #!/home/jvved/dev/testpks/.venv/bin/python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import re import re
import sys import sys

View File

@ -1,4 +1,4 @@
#!/Users/user/dev/testpks/testpks/.venv/bin/python3.12 #!/home/jvved/dev/testpks/.venv/bin/python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import re import re
import sys import sys

View File

@ -1,4 +1,4 @@
#!/Users/user/dev/testpks/testpks/.venv/bin/python3.12 #!/home/jvved/dev/testpks/.venv/bin/python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import re import re
import sys import sys

View File

@ -1,4 +1,4 @@
#!/Users/user/dev/testpks/testpks/.venv/bin/python3.12 #!/home/jvved/dev/testpks/.venv/bin/python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import re import re
import sys import sys

View File

@ -1,4 +1,4 @@
#!/Users/user/dev/testpks/testpks/.venv/bin/python3.12 #!/home/jvved/dev/testpks/.venv/bin/python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import re import re
import sys import sys

View File

@ -1,4 +1,4 @@
#!/Users/user/dev/testpks/testpks/.venv/bin/python3.12 #!/home/jvved/dev/testpks/.venv/bin/python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import re import re
import sys import sys

View File

@ -1,4 +1,4 @@
#!/Users/user/dev/testpks/testpks/.venv/bin/python3.12 #!/home/jvved/dev/testpks/.venv/bin/python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import re import re
import sys import sys

View File

@ -1 +1 @@
python3.12 python3

View File

@ -1 +1 @@
python3.12 /usr/bin/python3

View File

@ -1 +1 @@
/Library/Frameworks/Python.framework/Versions/3.12/bin/python3.12 python3

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More