1
0
Fork 0
mirror of synced 2024-06-01 10:09:49 +12:00

better quickstart example url

This commit is contained in:
Nick Sweeting 2020-11-23 03:54:25 -05:00 committed by GitHub
parent 696f32867b
commit 5af95c5aa6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,19 +36,19 @@ The main index is a self-contained `data/index.sqlite3` file, and each snapshot
#### Quickstart
```bash
# 1. Create a folder to hold your ArchiveBox data
# 1. Create a folder somewhere to hold your ArchiveBox data
mkdir ~/archivebox && cd ~/archivebox
docker run -v $PWD:/data -it archivebox/archivebox init
# 2. Archive some URLs to get started
docker run -v $PWD:/data -t archivebox/archivebox add https://example.com
docker run -v $PWD:/data -t archivebox/archivebox add --depth=1 https://archivebox.io
docker run -v $PWD:/data -t archivebox/archivebox add https://github.com/ArchiveBox/ArchiveBox
docker run -v $PWD:/data -t archivebox/archivebox add --depth=1 https://example.com
# 3. Then browse the Web UI or filesystem to see snapshots of the URLs you added
docker run -v $PWD:/data -it archivebox/archivebox manage createsuperuser
docker run -v $PWD:/data -p 8000:8000 archivebox/archivebox # start the server
open http://127.0.0.1:8000/ # open the interactive web UI
ls ./archive/*/index.html # or open the static indexes
docker run -v $PWD:/data -it archivebox/archivebox manage createsuperuser # create an admin acct
docker run -v $PWD:/data -p 8000:8000 archivebox/archivebox # start the web server
open http://127.0.0.1:8000/ # open the interactive web UI
ls archive/*/index.html # or browse snapshots on disk
```
<div align="center">