Web application for managing book clubs.
-
Fork & clone the repo.
-
Install dependencies.
pnpm i
-
Run CockroachDB.
There are three options:
-
Use docker to start a local cluster.
docker run -it --rm -p 26257:26257 -p 8080:8080 --env COCKROACH_DATABASE=<database_name> --env COCKROACH_USER=<user_name> --env COCKROACH_PASSWORD=<password> cockroachdb/cockroach:latest start-single-node
-
Install CockroachDB locally and start a local cluster. (docs)
-
Start a cloud cluster. (docs)
-
-
Create
.env
file in the project root directory. See.env.sample
file to see which variables are needed. -
Run
pnpm dev