From c929b73c3377fd6cabc8fbc754b26f06796bf7bf Mon Sep 17 00:00:00 2001 From: Karthik JP Date: Sat, 10 Sep 2022 10:45:34 +0530 Subject: [PATCH] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a4495bb..bae49a2 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,8 @@ python# CDC - Backend 2. Create a Virtual Environment in the [CDC_Backend](./) folder with this command below
`python -m venv venv` 3. Activate the environment with this command
- `.\venv\Scripts\activate` + `.\venv\Scripts\activate` (for WINDOWS)
+ `source ./venv/bin/activate` (for LINUX) 4. Install the dependencies
`pip install -r requirements.txt ` 5. Ensure that you have the PostgreSQL installed on your machine and is running on PORT **5432**
@@ -17,7 +18,8 @@ python# CDC - Backend ### Running the Application 1. Activate the environment with this command.
- `.\venv\Scripts\activate` + `.\venv\Scripts\activate` (for WINDOWS)
+ `source ./venv/bin/activate` (for LINUX) 2. Start the application by running this command (_Run the command where [manage.py](./CDC_Backend/manage.py) is located_)
` python manage.py runserver`