This project aims to archive the internet while using version control paradigms, primarily diffs and branches. The project is built using primarily Python 3 and was run in an x86-64 Linux development environment. The project should run cross platform. To develop locally, make sure to catch up on the dependencies:
# install dependencies from requirements.txt
pip install -r requirements.txtIdeally, packages should be managed through a virtual environment. To create and use one:
# create the venv
python3 -m venv .venv
# enable the virtual environment
source ./.venv/bin/activate
# use python3 and pip as normal