From f0f9964d4855edadeced951a238bf1eff37f7082 Mon Sep 17 00:00:00 2001 From: facundo Date: Sun, 14 Jul 2024 15:41:08 -0300 Subject: [PATCH] add some extra instructions --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7915f7c..d278335 100644 --- a/README.md +++ b/README.md @@ -238,19 +238,20 @@ Note that there's no open user registration functionality exposed to the front e Get the image from github packages: - TODO + docker pull ghcr.io/facundoolano/feedi:latest Create a volume for persisting the db data: - TODO + docker volume create feedidb -Run in development mode: +Load the default feeds into the default admin user: - TODO + docker run -v feedidb:/app/instance ghcr.io/facundoolano/feedi flask --app feedi/app.py feed load feeds.csv admin@admin.com + docker run -v feedidb:/app/instance ghcr.io/facundoolano/feedi flask --app feedi/app.py feed sync -Load some default feeds: +Run in development mode: - TODO + docker run -p 9988:9988 -v feedidb:/app/instance ghcr.io/facundoolano/feedi Run in production mode with authentication enabled: