fix missing closing tag
This commit is contained in:
parent
dbf9af0933
commit
02b85b63f2
1 changed files with 12 additions and 9 deletions
21
README.md
21
README.md
|
@ -132,7 +132,7 @@ curl -O 'https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/master/docker-c
|
||||||
<li>Optional: Start the server then login to the Web UI <a href="http://127.0.0.1:8000">http://127.0.0.1:8000</a> ⇢ Admin.
|
<li>Optional: Start the server then login to the Web UI <a href="http://127.0.0.1:8000">http://127.0.0.1:8000</a> ⇢ Admin.
|
||||||
<pre lang="bash"><code style="white-space: pre-line">
|
<pre lang="bash"><code style="white-space: pre-line">
|
||||||
docker-compose up
|
docker-compose up
|
||||||
# completely optional, CLI can also be used without running a server
|
# completely optional, CLI can always be used without running a server
|
||||||
</code></pre></li>
|
</code></pre></li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
|
@ -152,7 +152,7 @@ docker run -v $PWD:/data -it archivebox/archivebox init --setup
|
||||||
</li>
|
</li>
|
||||||
<li>Optional: Start the server then login to the Web UI <a href="http://127.0.0.1:8000">http://127.0.0.1:8000</a> ⇢ Admin.
|
<li>Optional: Start the server then login to the Web UI <a href="http://127.0.0.1:8000">http://127.0.0.1:8000</a> ⇢ Admin.
|
||||||
<pre lang="bash"><code style="white-space: pre-line">docker run -v $PWD:/data -p 8000:8000 archivebox/archivebox
|
<pre lang="bash"><code style="white-space: pre-line">docker run -v $PWD:/data -p 8000:8000 archivebox/archivebox
|
||||||
# completely optional, CLI can also be used without running a server
|
# completely optional, CLI can always be used without running a server
|
||||||
</code></pre>
|
</code></pre>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
@ -187,7 +187,7 @@ archivebox init --setup # if any problems, install with pip instead
|
||||||
</li>
|
</li>
|
||||||
<li>Optional: Start the server then login to the Web UI <a href="http://127.0.0.1:8000">http://127.0.0.1:8000</a> ⇢ Admin.
|
<li>Optional: Start the server then login to the Web UI <a href="http://127.0.0.1:8000">http://127.0.0.1:8000</a> ⇢ Admin.
|
||||||
<pre lang="bash"><code style="white-space: pre-line">archivebox server 0.0.0.0:8000
|
<pre lang="bash"><code style="white-space: pre-line">archivebox server 0.0.0.0:8000
|
||||||
# completely optional, CLI can also be used without running a server
|
# completely optional, CLI can always be used without running a server
|
||||||
</code></pre>
|
</code></pre>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
@ -203,7 +203,7 @@ See <a href="#%EF%B8%8F-cli-usage">below</a> for more usage examples using the C
|
||||||
<li>Install <a href="https://brew.sh/#install">Homebrew</a> on your system (if not already installed).</li>
|
<li>Install <a href="https://brew.sh/#install">Homebrew</a> on your system (if not already installed).</li>
|
||||||
<li>Install the ArchiveBox package using <code>brew</code>.
|
<li>Install the ArchiveBox package using <code>brew</code>.
|
||||||
<pre lang="bash"><code style="white-space: pre-line">brew install archivebox/archivebox/archivebox
|
<pre lang="bash"><code style="white-space: pre-line">brew install archivebox/archivebox/archivebox
|
||||||
</code>
|
</code></pre>
|
||||||
</li>
|
</li>
|
||||||
<li>Create a new empty directory and initalize your collection (can be anywhere).
|
<li>Create a new empty directory and initalize your collection (can be anywhere).
|
||||||
<pre lang="bash"><code style="white-space: pre-line">mkdir ~/archivebox && cd ~/archivebox
|
<pre lang="bash"><code style="white-space: pre-line">mkdir ~/archivebox && cd ~/archivebox
|
||||||
|
@ -212,7 +212,7 @@ archivebox init --setup # if any problems, install with pip instead
|
||||||
</li>
|
</li>
|
||||||
<li>Optional: Start the server then login to the Web UI <a href="http://127.0.0.1:8000">http://127.0.0.1:8000</a> ⇢ Admin.
|
<li>Optional: Start the server then login to the Web UI <a href="http://127.0.0.1:8000">http://127.0.0.1:8000</a> ⇢ Admin.
|
||||||
<pre lang="bash"><code style="white-space: pre-line">archivebox server 0.0.0.0:8000
|
<pre lang="bash"><code style="white-space: pre-line">archivebox server 0.0.0.0:8000
|
||||||
# completely optional, CLI can also be used without running a server
|
# completely optional, CLI can always be used without running a server
|
||||||
</code></pre>
|
</code></pre>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
@ -232,12 +232,13 @@ See <a href="#%EF%B8%8F-cli-usage">below</a> for more usage examples using the C
|
||||||
</li>
|
</li>
|
||||||
<li>Create a new empty directory and initalize your collection (can be anywhere).
|
<li>Create a new empty directory and initalize your collection (can be anywhere).
|
||||||
<pre lang="bash"><code style="white-space: pre-line">mkdir ~/archivebox && cd ~/archivebox
|
<pre lang="bash"><code style="white-space: pre-line">mkdir ~/archivebox && cd ~/archivebox
|
||||||
archivebox init --setup # install any missing extras like wget/ripgrep/etc. manually
|
archivebox init --setup
|
||||||
|
# install any missing extras like wget/git/ripgrep/etc. manually as needed
|
||||||
</code></pre>
|
</code></pre>
|
||||||
</li>
|
</li>
|
||||||
<li>Optional: Start the server then login to the Web UI <a href="http://127.0.0.1:8000">http://127.0.0.1:8000</a> ⇢ Admin.
|
<li>Optional: Start the server then login to the Web UI <a href="http://127.0.0.1:8000">http://127.0.0.1:8000</a> ⇢ Admin.
|
||||||
<pre lang="bash"><code style="white-space: pre-line">archivebox server 0.0.0.0:8000
|
<pre lang="bash"><code style="white-space: pre-line">archivebox server 0.0.0.0:8000
|
||||||
# completely optional, CLI can also be used without running a server
|
# completely optional, CLI can always be used without running a server
|
||||||
</code></pre>
|
</code></pre>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
@ -289,8 +290,10 @@ archivebox init --setup # safe to run init multiple times (also how you upd
|
||||||
archivebox --version
|
archivebox --version
|
||||||
archivebox help
|
archivebox help
|
||||||
|
|
||||||
archivebox add --depth=1 'https://example.com/some/rss/feed.xml'
|
# example usage:
|
||||||
archivebox add < ~/Downloads/bookmarks.html
|
# archivebox config --set SAVE_ARCHIVE_DOT_ORG=False
|
||||||
|
# archivebox add --depth=1 'https://example.com/some/rss/feed.xml'
|
||||||
|
# archivebox list --with-headers --html > static_index.html
|
||||||
```
|
```
|
||||||
|
|
||||||
- `archivebox setup/init/config/status/manage` to administer your collection
|
- `archivebox setup/init/config/status/manage` to administer your collection
|
||||||
|
|
Loading…
Reference in a new issue