Install packages.
$ cd client
$ npm installStart the server.
$ npm run devCreate a virtual environment, using miniconda for example.
$ conda create -n webapp python==3.10
$ conda activate webappInstall packages.
$ pip install -r requirements.txtStart the server.
$ daphne -b 127.0.0.1 -p 8000 court_occupancy_backend.asgi:application