Create python virtual environment and enter it
Linux:
python3 -m venv venv
. venv/bin/activate
Windows:
python -m venv venv
.\venv\Scripts\activate
Install all required packages:
pip3 install -r requirements.txt
Migrate the db and run the server:
cd backend
python3 manage.py migrate
python3 manage.py runserver
Install all required packages:
cd frontend_mobile
npm install
Run expo app:
npm run web