You need to have the following tools installed on your machine:
- Node.js 14+
- Docker 20+
- Yarn v1.22+
git clone [email protected]:kin-labs/kinetic.git
cd kinetic
yarn install
Start Services
yarn dev:services
Start Api
yarn dev:api
You can build the app into a production build:
yarn build
After that, you can run the production app:
yarn start
Use this command to the e2e test of the API:
nx e2e api-e2e
Use this command to run a unit test of one of the projects in the workspace:
nx test api-core-feature
Or in watch mode:
nx test api-core-feature --watch
Run the unit tests on all the projects.
nx run-many --target test --all