MyFTP/Makefile
minhtrannhat 5519be9222
feat(udp): use true byte representation
- added an option to make client without debug
2023-12-01 16:51:11 -05:00

18 lines
458 B
Makefile

.PHONY: build client server clean
build:
docker-compose up --build --remove-orphans
server:
docker exec -it project-ftp_server-1 python server.py --port_number 12000 --debug 1 --directory /server_directory
client:
docker exec -it project-ftp_client-1 python client.py --directory /client_directory --debug 1
client-no-debug:
docker exec -it project-ftp_client-1 python client.py --directory /client_directory
clean:
docker-compose down --volumes