From 9dbb13b2776c33bc91517973499cae2abf702a7b Mon Sep 17 00:00:00 2001 From: minhtrannhat Date: Wed, 6 Dec 2023 17:37:24 -0500 Subject: [PATCH] fix(doc): Update testing instructions --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 7dde3de..accb79b 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,18 @@ By default, the server IP address or hostname or server name will be `0.0.0.0` o You can run `python3 src/myftp/server.py --directory ` to start the server or `python3 src/myftp/server.py --ip_addr --port_number --debug 1 --directory ` for debugging purposes and to specify the port number. +## Localhost testing + +Checkout this repo, go the root of the repo. + +### Client + +Run `python3 src/myftp/client.py --debug 1 --directory client_directory` + +### Server + +Run `python3 src/myftp/server.py --debug 1 --directory server_directory` + ## Testing with Docker ### Dependencies