Update nix module, add resizing to WebsiteEditor and make preview load without JS

This commit is contained in:
thiloho
2025-01-29 19:53:38 +01:00
parent c6111fd247
commit fba3aef8aa
4 changed files with 38 additions and 46 deletions

View File

@@ -23,7 +23,7 @@ jobs:
run: |
wait_for_postgres() {
echo "Waiting for PostgreSQL to be ready..."
while ! nix shell nixpkgs#postgresql_16 -c pg_isready -h 127.0.0.1 -p 15432 -U postgres; do
while ! nix shell nixpkgs#postgresql -c pg_isready -h 127.0.0.1 -p 15432 -U postgres; do
sleep 1
done
echo "PostgreSQL is ready."