Mark Nguyen
Mark Nguyen
FYI, the environment variable `CSRF_TRUSTED_ORIGINS` overrides anything in `settings.py` so when I copied [the example docker compose file from the repo](https://github.com/ArchiveBox/ArchiveBox/blob/dev/docker-compose.yml#L24), it carried `CSRF_TRUSTED_ORIGINS=https://archivebox.example.com` with it. I was able to...
Just curious, does this error occur when you run against a new clean `/data/` folder? Also, try running `docker compose run -it --remove-orphans archivebox /bin/ls -liah /data/personas/Default/chrome_profile/`. I suspect either...
@melyux I'm just a user, but I think you can create a new deployment and import the contents of `archive/`. Try roughly following https://github.com/ArchiveBox/ArchiveBox/wiki/Merging-Collections steps 2 through 5, using an...
I personally ran into issues with `yt-dlp` as well and ran the plugin directly to see what the problem was. You can find the full `yt-dlp` command in your index.json...
Also, might be worth showing the "standard error" when a plugin command fails. It would make debugging a lot easier.
Y'all are absolutely right. `npm i` followed by `npm run dev` works fine. In my case, I was accidentally using both client side and server side at the same time,...
You probably want something like: ``` api_token.expires.isoformat() if api_token and api_token.expires else 'Never' ```