Runs SvelteKit in a Docker container, with Postgres in a second container.
Start the containers:
docker compose up --build
The site is now running on localhost:5173
open localhost:5173
Postgres is also running, on port 5433
. To connect:
psql --user=postgres --password --host=localhost --port=5433 postgres
The password is postgres
MIT