mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
Update README.md
This commit is contained in:
parent
c1dbf03d1d
commit
b30a0d0aea
1 changed files with 7 additions and 16 deletions
23
README.md
23
README.md
|
@ -51,28 +51,19 @@ The goal is to sleep soundly knowing the part of the internet you care about wil
|
||||||
|
|
||||||
<br/>
|
<br/>
|
||||||
|
|
||||||
|
**📦 Get ArchiveBox with [Docker Compose (recommended)](#quickstart) / Docker, or `apt` / `brew` / `pip` ([see below](#quickstart)).**
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Use this auto setup script to get started, or follow the Install steps below
|
# Use this auto setup script to get started, or follow the full Quickstart instructions below
|
||||||
curl -sSL 'https://get.archivebox.io' | bash
|
curl -sSL 'https://get.archivebox.io' | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
**📦 Install ArchiveBox with [Docker Compose (recommended)](#quickstart) / Docker, or `apt` / `brew` / `pip` ([see below](#quickstart)).**
|
|
||||||
|
|
||||||
*No matter which setup method you choose, they all follow this basic process and provide the same CLI, Web UI, and on-disk data layout.*
|
|
||||||
|
|
||||||
1. Once you've installed ArchiveBox, run this in a new empty folder to get started
|
|
||||||
```bash
|
|
||||||
# mkdir -p ~/archivebox && cd ~/archivebox # you can put the data folder anywhere, e.g. ~/archivebox
|
|
||||||
archivebox init --setup # initialize a collection in the current directory
|
|
||||||
```
|
|
||||||
|
|
||||||
2. Add some URLs you want to archive
|
|
||||||
```bash
|
```bash
|
||||||
|
# Basic usage
|
||||||
|
cd ~/archivebox # you can setup a data folder anywhere
|
||||||
|
archivebox init --setup # initialize a collection and create an admin user
|
||||||
archivebox add 'https://example.com' # add URLs one at a time via args / piped stdin
|
archivebox add 'https://example.com' # add URLs one at a time via args / piped stdin
|
||||||
archivebox schedule --every=day --depth=1 https://example.com/rss.xml # or have it import URLs on a schedule
|
archivebox schedule --every=day --depth=1 https://example.com/rss.xml # or have it import URLs regularly on a schedule
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Then view your archived pages
|
|
||||||
```bash
|
```bash
|
||||||
archivebox server 0.0.0.0:8000 # use the interactive web UI
|
archivebox server 0.0.0.0:8000 # use the interactive web UI
|
||||||
archivebox list 'https://example.com' # use the CLI commands (--help for more)
|
archivebox list 'https://example.com' # use the CLI commands (--help for more)
|
||||||
|
|
Loading…
Reference in a new issue