containerized solution where you can create audits keyed off domain and routes.
This was done so don't have to configure NPM differently between open or closed networks. This will allow easy to upgrade and use the latest npm modules, and if not be able to troubleshoot easier without having to step into container.
npm i
mkdir reports
touch urls.txt
Don't put urls in quotes or seperate by commas, it simply will be parsed by linebreaks
Replace /Users/uname with your absolute path which you can run pwd to get.
podman build -t axe-audit-reporting .
podman run \
-v /Users/uname/reports:/app/reports \
-v /Users/uname/urls.txt:/app/urls.txt \
axe-audit-reporting
docker build -t axe-audit-reporting .
docker run \
-v /Users/uname/reports:/app/reports \
-v /Users/uname/urls.txt:/app/urls.txt \
axe-audit-reporting
If need help configuring a proxy, mounting certs, etc. You can reach out.