See crawler README.
Requirements:
Oneliner command to install packages for both from the main project folder:
yarn --cwd api && yarn --cwd frontend
Alternatively install for a specific folder by first running cd api or cd frontend then simply yarn.
- Develop locally: Run
yarn run devin the folder of the service you're running (apiorfrontend).- The frontend client will be running at localhost:3000. (
yarn startfor frontend does the same thing). - The backend api will be running at localhost:8080.
- The frontend client will be running at localhost:3000. (
- Format files: Run
yarn run format. This will happen automatically whenever you commit anyway.
- If you want to run a script for a service without having to
cdinto the folder first you can add--cwd <folder path>before the command. (ex:yarn --cwd api run dev)