perp-curie
Local Development and Testing
Requirements
You should have Node 12 installed. Use nvm to install it.
Development
Clone this repository, install NodeJS dependencies, and build the source code:
git clone git@github.com:perpetual-protocol/perp-lushan.git
npm i
npm run build
Since there are some runtime environment dependencies, if the installation failed on your machine, please try a vanilla install instead:
npm run clean
rm -rf node_modules/
rm package-lock.json
npm install
npm run build
Testing
To run all the test cases:
npm run test