This project requires specific versions of Node.js and pnpm. Please check the engines and packageManager fields in package.json for the required versions.
If you're using nvm, you can automatically switch to the correct Node.js version by running:
nvm useThis will read the version from the .nvmrc file and switch to it automatically.
If you have Corepack enabled (included with Node.js 16.10+), pnpm will automatically use the version specified in the packageManager field of package.json. You can enable Corepack by running:
corepack enableTo run the infrastructure and all services -- just run:
pnpm start- Start base infrastructure services in Docker containers:
pnpm run infra
- Run the services with Turborepo:
pnpm run turbo-start
To run the infrastructure and all services, execute:
pnpm run docker- Start base infrastructure services in Docker containers:
pnpm run infra
- Run the services you need:
./bin/start.sh api web
You can also run infrastructure services separately using the ./bin/start.sh bash script.