From 8aaf150f144c873a8cafddc3a8dbb17f4071e457 Mon Sep 17 00:00:00 2001 From: a Date: Mon, 12 Dec 2022 08:58:47 -0600 Subject: [PATCH] add ffmpeg and docker compose to readme --- README.md | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 88f6b36..bc51a12 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ Install dependencies: - FFI: `libffi` - NaCl: `libnacl` or `libsodium` +- FFmpeg: `ffmpeg` Copy `.env.example` to `.env`: @@ -25,27 +26,25 @@ Copy `.env.example` to `.env`: ## Setup -### ...with pdm +### ...with PDM ```sh pdm install --prod pdm run python app.py ``` -### ...with requirements.txt - -#### ....and pipenv - -```sh -pipenv install -pipenv run python app.py -``` - -#### ....and virtualenv +### ...with requirements.txt and virtualenv ```sh virtualenv .venv source .venv/bin/activate pip install -r requirements.txt python app.py +``` + +### ...with Docker Compose + +```sh +docker compose build +docker compose up -d ``` \ No newline at end of file