From a035222c8a9a6e5f400480c5b47b88c2af7d91ae Mon Sep 17 00:00:00 2001 From: Michael Herman Date: Sun, 22 Jun 2025 14:08:15 -0500 Subject: [PATCH] updates --- Dockerfile | 2 -- LICENSE | 2 +- Makefile | 4 ++-- README.md | 4 ++-- docker-compose.yml | 1 - 5 files changed, 5 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index f600c67..b537f9f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,3 @@ -# Dockerfile - FROM python:3 RUN pip install flask pyyaml COPY ./app.py /app/app.py diff --git a/LICENSE b/LICENSE index a4857d7..87825c2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 Neeran Gul +Copyright (c) 2025 Neeran Gul Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Makefile b/Makefile index a9f39f2..778ddde 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ test: - docker-compose up -d + docker compose up -d pytest --disable-warnings || true - docker-compose down + docker compose down diff --git a/README.md b/README.md index 5ba2b85..1e2d659 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# testdriven-loadbalancer-tdd-tutorial +# Creating an HTTP Load Balancer in Python -Source Code for the testdriven Load Balancer TDD tutorial +Source Code for the testdriven Load Balancer TDD tutorial https://testdriven.io/courses/http-load-balancer/ diff --git a/docker-compose.yml b/docker-compose.yml index 81c46a3..c3eec9e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,4 +1,3 @@ -version: '3' services: mango1: image: server