diff --git a/README.md b/README.md index 259f537..ba07af9 100644 --- a/README.md +++ b/README.md @@ -17,5 +17,14 @@ A simple server for mirroring HTTP requests for testing. Download the DEB file, and install it: ```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.