# Clone the repository
git clone <repository-url>
cd NYC-Safety-Indicator
python version: Python 3.9.6
# Set up the backend
cd backend
python3 -m venv venv #create virtual env
source venv/bin/activate # macOS/Linux
venv\Scripts\activate # Windows
pip install -r requirements.txt
python3 manage.py migrate
python3 manage.py runserver
# Set up the frontend
cd ../frontend
cd geosafe-hub
npm install
npm run dev