Unification of pagination, admins control and more

This commit is contained in:
2026-03-02 19:02:20 +07:00
parent 035170e46f
commit eab67ccfc1
13 changed files with 271 additions and 118 deletions

View File

@@ -24,6 +24,14 @@ if ! pg_isready -h localhost -p 5432; then
fi
echo "psql is up and is recieving connections."
echo
echo "checking redis..."
if ! redis-cli ping | grep PONG > /dev/null; then
echo "redis is down, try again" >&2
exit 1
fi
echo "redis is up and is recieving connections."
echo
echo "running migrations..."
alembic upgrade head