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