From 0fe6805958e1aa4f44edd1312b65646d008b7997 Mon Sep 17 00:00:00 2001 From: Patryk Kocielnik Date: Mon, 19 Aug 2024 13:05:22 +0000 Subject: [PATCH 1/2] Update the README to match the new steps to deploy the app. --- README.md | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 44b249c..4ad1afe 100644 --- a/README.md +++ b/README.md @@ -34,19 +34,9 @@ This repository contains a script to iteratively issue a bulk fetch and populate 2. Install python3, if you haven't already. 3. Run the following command to install the dependencies: ``` -python3 -m pip install -r requirements.txt +python3 -m pip install -r . ``` -4. `cd` into the directory and create a `virtualenv` by running: -``` -virtualenv flask -``` -5. Run the following command: -``` -source flask/Scripts/activate -``` -You should now seek `(flask)` in your terminal prompt. - -6. Run the `main.py` with: +4. Run the `main.py` with: ``` python3 main.py ``` From 61fddd3106b6375924f4c542e7182d3cdc4e5a71 Mon Sep 17 00:00:00 2001 From: Patryk Kocielnik Date: Tue, 20 Aug 2024 19:54:12 +0000 Subject: [PATCH 2/2] Fix params in the install call. The command did not work in that form - we need to skip the -r switch for the dot in the end to make sense. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ad1afe..6345ac8 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ This repository contains a script to iteratively issue a bulk fetch and populate 2. Install python3, if you haven't already. 3. Run the following command to install the dependencies: ``` -python3 -m pip install -r . +python3 -m pip install . ``` 4. Run the `main.py` with: ```