Skip to content

Local Development

Malcolm Landon edited this page Sep 23, 2024 · 2 revisions

Follow these steps to get a local development environment running:

Pre requisite

  • install node and nvm

Step 1 - Checkout

git clone https://github.com/talis/talis-node.git

Step 1 - Install Dependencies

cd talis-node
nvm use
npm install

Step 3 - Bring up the redis as a service

 docker-compose up -d redis

Step 3 - Run the tests

# run unit tests
npm run unit-test
...

# run integration tests
npm run integration-test