From 33d002fea927ea3685bc8431341a943f401e2da3 Mon Sep 17 00:00:00 2001 From: Goldy <153996346+g0ldyy@users.noreply.github.com> Date: Sun, 30 Jun 2024 13:21:54 +0200 Subject: [PATCH] add run from source --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 69d6b1b..56bebe2 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,25 @@ - Only Real-Debrid supported right now *(if you want other debrid services, please provide an account)* # Installation +## From source +- Clone the repository and enter the folder + ```sh + git clone https://github.com/g0ldyy/comet + cd comet + ``` +- Install dependencies + ```sh + pip install poetry + poetry install + ```` +- Start Comet + ```sh + poetry run python -m comet.main + ```` + ## With Docker - Simply run the Docker image after modifying the environment variables - ``` + ```sh docker run -p 8000:8000 -d \ --name comet \ -e FASTAPI_HOST=0.0.0.0 \