From b911c111b053ac09ac2a9b691a714ebcc4270c74 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Tue, 18 Aug 2020 19:10:12 -0400 Subject: [PATCH] 0.4.21 release --- archivebox.egg-info/PKG-INFO | 27 ++++++++++++++++++--------- package.json | 2 +- 2 files changed, 19 insertions(+), 10 deletions(-) diff --git a/archivebox.egg-info/PKG-INFO b/archivebox.egg-info/PKG-INFO index a7301407..265be44e 100644 --- a/archivebox.egg-info/PKG-INFO +++ b/archivebox.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: archivebox -Version: 0.4.20 +Version: 0.4.21 Summary: The self-hosted internet archive. Home-page: https://github.com/pirate/ArchiveBox Author: Nick Sweeting @@ -17,12 +17,12 @@ Description:

ArchiveBox
The open-source self-hosted web archive.

- ▶️ Quickstart | - Demo | - Github | - Documentation | - Info & Motivation | - Community | + ▶️ Quickstart | + Demo | + Github | + Documentation | + Info & Motivation | + Community | Roadmap
@@ -37,6 +37,7 @@ Description: 
+
@@ -71,8 +72,8 @@ Description:
## Quickstart - ArchiveBox is written in `python3.7` and has [3 main binary dependencies](https://github.com/pirate/ArchiveBox/wiki/Install#dependencies): `wget`, `chromium`, and `youtube-dl`. - To get started, you can [install them manually](https://github.com/pirate/ArchiveBox/wiki/Install) using your system's package manager, use the [automated helper script](https://github.com/pirate/ArchiveBox/wiki/Quickstart), or use the official [Docker](https://github.com/pirate/ArchiveBox/wiki/Docker) container. All three dependencies are optional if [disabled](https://github.com/pirate/ArchiveBox/wiki/Configuration#archive-method-toggles) in settings. + ArchiveBox is written in `python3.7` and has [4 main binary dependencies](https://github.com/pirate/ArchiveBox/wiki/Install#dependencies): `wget`, `chromium`, `youtube-dl` and `nodejs`. + To get started, you can [install them manually](https://github.com/pirate/ArchiveBox/wiki/Install) using your system's package manager, use the [automated helper script](https://github.com/pirate/ArchiveBox/wiki/Quickstart), or use the official [Docker](https://github.com/pirate/ArchiveBox/wiki/Docker) container. These dependencies are optional if [disabled](https://github.com/pirate/ArchiveBox/wiki/Configuration#archive-method-toggles) in settings. ```bash # Docker @@ -97,9 +98,16 @@ Description:
```bash # Bare Metal # Use apt on Ubuntu/Debian, brew on mac, or pkg on BSD + # You may need to add a ppa with a more recent version of nodejs apt install python3 python3-pip git curl wget youtube-dl chromium-browser + curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - \ + && echo 'deb https://deb.nodesource.com/node_14.x $(lsb_release -cs) main' >> /etc/apt/sources.list \ + && apt-get update -qq \ + && apt-get install -qq -y --no-install-recommends nodejs + pip install archivebox # install archivebox + npm install -g 'git+https://github.com/pirate/ArchiveBox.git' mkdir data && cd data # (doesn't have to be called data) archivebox init @@ -112,6 +120,7 @@ Description:
Once you've added your first links, open `data/index.html` in a browser to view the static archive. You can also start it as a server with a full web UI to manage your links: + ```bash archivebox manage createsuperuser archivebox server diff --git a/package.json b/package.json index 6b5c086d..1352fd4f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "archivebox", - "version": "0.4.20", + "version": "0.4.21", "description": "ArchiveBox: The self-hosted internet archive", "author": "Nick Sweeting ", "license": "MIT",