Merge branch 'master' into tags

This commit is contained in:
Cristian Vargas 2020-10-20 08:23:25 -05:00 committed by GitHub
commit a850b4a9d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
31 changed files with 651 additions and 396 deletions

View file

@ -19,22 +19,18 @@
```bash
git clone https://github.com/pirate/ArchiveBox
cd ArchiveBox
# Optionally create a virtualenv
pip install -r requirements.txt
pip install -e .
# Ideally do this in a virtualenv
pip install -e '.[dev]' # or use: pipenv install --dev
```
### Running Tests
```bash
./bin/archive tests/*
# look for errors in stdout/stderr
# then confirm output html looks right
# if on >v0.4 run the django test suite:
archivebox manage test
./bin/lint.sh
./bin/test.sh
./bin/build.sh
```
### Getting Help
Open issues on Github or contact me https://sweeting.me/#contact.
Open issues on Github or message me https://sweeting.me/#contact.

View file

@ -1,10 +1,12 @@
**IMPORTANT: Do not submit PRs with only formatting / PEP8 / line length changes, I will close them with great prejudice. The PEP8 checks I don't follow are intentional. PRs for minor bugfixes, typos, etc are fine.**
<!-- IMPORTANT: Do not submit PRs with only formatting / PEP8 / line length changes. -->
# Summary
e.g. This PR fixes ABC or adds the ability to do XYZ...
<!--e.g. This PR fixes ABC or adds the ability to do XYZ...-->
**Related issues: #XYZ** (delete this line if there are no related issues)
# Related issues
<!-- e.g. #123 or Roadmap goal # https://github.com/pirate/ArchiveBox/wiki/Roadmap -->
# Changes these areas
@ -13,9 +15,4 @@ e.g. This PR fixes ABC or adds the ability to do XYZ...
- [ ] Command line interface
- [ ] Configuration options
- [ ] Internal architecture
- [ ] Archived data layout on disk
# Roadmap Goals
This PR helps us move towards xyz roadmap goal, as outlined here: https://github.com/pirate/ArchiveBox/wiki/Roadmap
(delete this section if it's just a bugfix / simple PR)
- [ ] Snapshot data layout on disk

View file

@ -115,7 +115,7 @@ jobs:
with:
fetch-depth: 1
- uses: satackey/action-docker-layer-caching@v0.0.4
- uses: satackey/action-docker-layer-caching@v0.0.8
- name: Build image
run: |
@ -137,7 +137,7 @@ jobs:
- name: Add stdin link
run: |
echo "http://www.test-nginx-2.local" | docker run -i -v "$PWD"/data:/data "$DOCKER_IMAGE" add
echo "http://www.test-nginx-2.local" | docker run -i --network host -v "$PWD"/data:/data archivebox add
- name: List links
run: |