Create .env from .env.example and adjust params
cp .env.example .envAlso make sure that you have postgres db server and you created db with createdb <your_database_name>
# Install dependencies
yarn
truffle migrate --network forkedpInstall dependecies
yarn depsBuild client application
yarn buildyarn startDefault location of the frontend app http://localhost:3001/
docker-compose up --build- Note this is still work in progress it is not customized for the latest release where it is also included postgres db.
Test all .js and .sol files in ./test directory with truffle test
yarn test