Nick Sweeting

Results 1234 comments of Nick Sweeting

The current status of the API is "unstable" I'd say. Reverse engineering the UI is the way to go for now, but we have plans to stabilize it more in...

I don't believe we need Link or Snapshot anywhere that Django is not initialized, so that is a non-issue. If you're worried about `oneshot` I have an idea to fix...

Copying over my earlier message here from the API discussion related to the ArchiveBox browser extension https://github.com/ArchiveBox/ArchiveBox/issues/577: I think a minimal API can be worked on before the Huey refactor,...

Definitely open to contribution on the API front! I'm more focused on internals refactoring at the moment but as mentioned in that quoted comment I believe my changes can be...

Unfortunately the cookies file does not apply to the title, so there's no easy way to get around this right now till we push a fix to use the cookies...

What's the output of `docker-compose run --rm archivebox version`? Also try adding `try: true` and `stdin: true` to your docker-compose file.

`stdin` and `tty` are `docker-compose` options, not environment variables, add them like so: ```yaml services: archivebox: ... tty: true stdin: true ... environment: ... ```

The archivebox data dir needs to start as an empty dir in a local drive. ./archive within it can then be symlinked to an SMB share. ```bash mkdir ~/archivebox cd...

Need more info, screenshots, error output, your SMB config, directory layout, etc. anything. Not enough to go on without that.

Can you post the full verbatim output of ```bash docker-compose run --rm archivebox config --set DEBUG=True docker-compose run --rm archivebox add --parser=url_list 'https://forecast.weather.gov/MapClick.php?lat=38.2482&lon=-121.6002' ``` (Archivebox is designed to be used...