From 03e3204ea78ecffb1c8c9679cc7c467cb9e983ed Mon Sep 17 00:00:00 2001 From: PLUJA <64632615+pluja@users.noreply.github.com> Date: Wed, 26 Aug 2020 08:35:23 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 25f4e8d..d3b784b 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ You can test this new version. - `cd Parasitter` 4. Change to this branch: - `git checkout dev-indep` -5. [Optional] Prepare a virtual environment and activate it: +5. [Optional] Prepare a virtual environment and activate it (Recommended): > Python lets you create virtual environments. This allows you to avoid installing all the `pip` packages on your system. If you don't mind about that, you can jump to step **5.** and ignore everything about "[env]". @@ -79,6 +79,7 @@ You can test this new version. - `flask db init` - `flask db migrate` - `flask db upgrade` + > If you get *`"No such command db"`*, try running `source venv/bin/activate` again. 9. [env] Run the application. - `flask run` 10. Go to "http://localhost:5000/" and enjoy. From ba3b7c14ef2526589fc2de10d87adb41cc269d71 Mon Sep 17 00:00:00 2001 From: PLUJA <64632615+pluja@users.noreply.github.com> Date: Wed, 26 Aug 2020 08:41:38 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d3b784b..91a53f9 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,8 @@ The Parasitter server connects to Google (Youtube) in order to gather all the ne ### Test You can test this new version. -> IMPORTANT: Connections to googlevideo will be made to stream the videos. It is recommended to use a VPS server to preserve your privacy. + +##### IMPORTANT: Connections to googlevideo will be made to stream the videos. It is recommended to use a VPS server or a VPN to preserve your privacy. This version is intended for a remote server. 1. Install `python3`, `pip3`, `python3-venv` (optional) and `git`. 2. Clone this repository: From 47c950a1880123de182894e48c0e8d01fba994ac Mon Sep 17 00:00:00 2001 From: PLUJA <64632615+pluja@users.noreply.github.com> Date: Wed, 26 Aug 2020 08:42:39 +0200 Subject: [PATCH 3/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 91a53f9..d806400 100644 --- a/README.md +++ b/README.md @@ -72,9 +72,9 @@ You can test this new version. - `source venv/bin/activate` > Now you are inside of the virtual environment for python. All instructions wiht [env] indicate that must be done inside the env if you decided to create one. From now on, you will always need to start the application from within the virtual env. 6. [env] Update pip - - `pip3 install --upgrade pip` + - `python3 pip install --upgrade pip` 7. [env] Install the required libraries: - - `pip3 install -r requirements.txt` + - `python3 pip install -r requirements.txt` > Use `sudo` or, preferably `--user`, if not working. 8. [env] Initialize and prepare the database. - `flask db init`