- Clone the repo and cd the directory.
- Set up the virtual env for python backend -
virtualenv virtual
- Activate virtualenv
. virtual/bin/activate
and install dependencies -pip install -r app/requirements.txt
. Once installed, you can deactivate virtualenv. - Install ui dependencies -
yarn --cwd ./ui
.--cwd ./ui
allows to specify directory where package.json is located. - You are all set up. Now run
./develop.sh
and you have live development environment. Make changes to app or ui code and it will hot-reload.