All of the cadence contracts and tests for the BlockRecords platform.
# install flow cli
$ brew install flow-cli
# install dependencies
$ make init
# create .env file
$ cp .env.default .env
# start the emulator
$ make flow-emulator
# deploy all contracts to emulator
$ make flow-deploy-contracts
in order to run the tests, make sure to:
- setup development environment
- start flow emulator
- deploy all contracts
# run tests
$ make tests
# start service
$ make run