Add todo for the mirror-server project.

This commit is contained in:
Dorian 2023-04-14 09:58:36 -04:00
parent fbcb0e4562
commit 99a68b9f89
1 changed files with 10 additions and 1 deletions

View File

@ -17,5 +17,14 @@ A simple server for mirroring HTTP requests for testing.
Download the DEB file, and install it: Download the DEB file, and install it:
```bash ```bash
curl https://code.birch-tree.net/api/packages/dorian/generic/mirror-server/0.2.0/mirror-server_0.2.0_amd64.deb && sudo dpkg -i mirror-server-0.2.0_amd64.deb VERSION=0.2.0
REPO_URL=https://code.birch-tree.net/api/packages/dorian/generic/mirror-server/
curl "${REPO_URL}/${VERSION}/mirror-server_${VERSION}_amd64.deb"
sudo dpkg -i "mirror-server-${VERSION}_amd64.deb"
``` ```
## TODO
* [ ] Add logging to server.
* [ ] Add convenience path to access logging for a certain date / records.
* [ ] Dockerize mirror-server for easier distribution.