This is a monorepo for a couple of related websites. Not much to see here right now.
See home
.
Maybe coming soon.
The only currently supported way to locally host the projects is using Docker.
First, install Docker Engine and Docker Compose.
Build the Docker images: (this must be repeated whenever there are Dockerfile changes)
docker compose build
Install the dependencies: (this must be repeated whenever there are dependency changes)
docker compose run home pnpm install
Run everything:
docker compose up
You may be able to run Postgres within Docker but Node on the host.
You may be able to run everything outside of Docker. Among other necessary setup steps, you will want to see docker/init-db.sh
for early database setup.