From e6d6b7cb6dc9461df2fc4ef69937f6bc5acf81c9 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sun, 28 Jan 2024 01:46:43 -0800 Subject: [PATCH] Update README.md --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d70c1d9a..17e321e1 100644 --- a/README.md +++ b/README.md @@ -442,7 +442,7 @@ For more discussion on managed and paid hosting options see here: -sqlite3 ./index.sqlite3 # run SQL queries on your index -archivebox shell # explore the Python API in a REPL -ls ./archive/*/index.html # or inspect snapshots on the filesystem +archivebox shell # explore the Python library API in a REPL +sqlite3 ./index.sqlite3 # run SQL queries directly on your index +ls ./archive/*/index.html # or inspect snapshot data directly on the filesystem @@ -542,6 +542,8 @@ docker run -v $PWD:/data -it -p 8000:8000 archivebox/archivebox archivebox config --set PUBLIC_ADD_VIEW=True # allow guests to submit URLs archivebox config --set PUBLIC_SNAPSHOTS=True # allow guests to see snapshot content archivebox config --set PUBLIC_INDEX=True # allow guests to see list of all snapshots +# or +docker compose run archivebox config --set ... # restart the server to apply any config changes