Skip to content

Latest commit

 

History

History
71 lines (47 loc) · 878 Bytes

README.md

File metadata and controls

71 lines (47 loc) · 878 Bytes

Kinetic

Requirements

You need to have the following tools installed on your machine:

  • Node.js 14+
  • Docker 20+
  • Yarn v1.22+

Getting started

git clone git@github.com:kin-labs/kinetic.git
cd kinetic
yarn install

Development setup

Start Services

yarn dev:services

Start Api

yarn dev:api

Building the project

You can build the app into a production build:

yarn build

After that, you can run the production app:

yarn start

Testing the project

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