Ride sharing platform.
Make sure you have node, yarn and now installed and updated to their latest versions.
To install dependencies, run on project root:
yarn
To run the API (backend) server:
yarn api:start
To run the Web (frontend) server:
yarn web:start
To test the code:
yarn api:test
yarn web:test
To deploy these two servers with now:
yarn api:deploy
yarn web:deploy
To clean up installation and start fresh in case of issues:
yarn clean
As this is a monorepo, currently it is advised that you cd inside the specific package you wish to develop on and follow its instructions (README).