1
0
Fork 0
mirror of synced 2024-05-17 02:43:16 +12:00

Update README.md

This commit is contained in:
Nick Sweeting 2021-05-07 08:02:45 -04:00 committed by GitHub
parent a1fae0a5c1
commit d2a7d8284c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -865,13 +865,19 @@ archivebox server --debug ...
</details>
#### Build and run a Github branch
#### Install and run a specific Github branch
<details><summary><i>Click to expand...</i></summary>
```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
```
</details>