Initial installation steps are as follows:
# Setup and activate virtual environment
sudo apt install virtualenv
virtualenv env
source ./env/bin/activate
# Install Python libraries
sudo pip3 install -r requirements.txt
# Setup backend
cd FD_backend
python3 manage.py makemigrations
python3 manage.py migrate
# Setup frontend
sudo apt install npm
cd ../FD_frontend
npm install
npm install --save google-map-react
In order to run the backend server, follow these steps:
cd FD_backend # from repo root
python3 manage.py runserver
The frontend server can be run as following:
cd FD_frontend # from repo root
npm start