From 3a6aeb38664e0e723428603d5c2d20ce30205d1c Mon Sep 17 00:00:00 2001 From: Michael Roy <72664547+its-michaelroy@users.noreply.github.com> Date: Sun, 19 May 2024 02:27:07 -0400 Subject: [PATCH] Update README.md --- README.md | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index daadc03..95263b2 100644 --- a/README.md +++ b/README.md @@ -31,24 +31,37 @@ To learn more about Deep Impact, check out our [Deep Impact GitHub](https://gith 1. **Set Up Python Environment**: - Vanilla Python: ```sh - python -m venv deep-impact-env + python -m venv .venv ``` - Virtual Environment Wrapper: ```sh - mkvirtualenv deep-impact-env + mkvirtualenv .venv ``` - Activate the environment: ```sh - source deep-impact-env/bin/activate + source .venv/bin/activate ``` 2. **Install Required Packages**: - Navigate to the backend directory and install dependencies: ```sh - cd Deep-Impact/backend/deep_impact_proj + cd Deep-Impact/backend pip install -r requirements.txt ``` +3. **Initial Migration(s)**: + - Ensure you're located in the path: Deep-Impact/backend + ```sh + python manage.py makemigrations + python manage.py migrate + ``` + +4. **Start Django Server**: + - Ensure you're located in the path: Deep-Impact/backend + ```sh + python manage.py runserver + ``` + ### Vite Frontend Setup 1. **Install Node Modules**: