From 9708c5ecfa9ebc4611bbd9b1eb1a45b3df8e149d Mon Sep 17 00:00:00 2001 From: Stephen Jianu Date: Fri, 14 Mar 2025 18:41:27 -0500 Subject: [PATCH] Add README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a2a5de0 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# relativeweather +This is a simple webpage that pulls today and tomorrow's forcasted high temperatures in Park Ridge, IL using the Open-Meteo API. + +### Requirements +* A web server (tested with Apache) +* PHP (tested with 8.2 and 8.3) +* An active Internet connection to pull the weather data, as this happens on page load + +### Container deployment +Instead of spinning up a web server with PHP yourself, you can opt to run the Docker container. Here is an example: + +``` +docker run -d -p 6969:80 --restart=unless-stopped --name relativeweather registry.services.jianu.house/relativeweather +``` -- 2.39.5