tweak icons

This commit is contained in:
Nick Sweeting 2020-10-31 19:32:43 -04:00
parent cafe35c595
commit 22fb9c2ad7
5 changed files with 20 additions and 12 deletions

View file

@ -429,6 +429,15 @@ Description: <div align="center">
# Optional: install the extractor dependencies
./bin/setup.sh
# Optional: develop via docker by mounting the code dir into the container
# if you edit e.g. ./archivebox/core/models.py on the docker host, runserver
# inside the container will reload and pick up your changes
docker build . -t archivebox
docker run -it -p 8000:8000 \
-v $PWD/data:/data \
-v $PWD/archivebox:/app/archivebox \
archivebox server 0.0.0.0:8000 --debug --reload
```
### Common development tasks