From d2a7d8284ca327bc43ae7e19d00ae6f81aa6ae90 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Fri, 7 May 2021 08:02:45 -0400 Subject: [PATCH] Update README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1fc32198..96aa15d4 100644 --- a/README.md +++ b/README.md @@ -865,13 +865,19 @@ archivebox server --debug ... -#### Build and run a Github branch +#### Install and run a specific Github branch
Click to expand... ```bash +# docker: docker build -t archivebox:dev https://github.com/ArchiveBox/ArchiveBox.git#dev -docker run -it -v $PWD:/data archivebox:dev ... +docker run -it -v $PWD:/data archivebox:dev init --setup + +# bare metal: +pip install 'git+https://github.com/pirate/ArchiveBox@dev' +npm install 'git+https://github.com/ArchiveBox/ArchiveBox.git#dev' +archivebox init --setup ```