From: Stephen Jianu Date: Fri, 14 Mar 2025 23:41:27 +0000 (-0500) Subject: Add README.md X-Git-Url: https://stephenjianu.com/gitweb/?a=commitdiff_plain;h=9708c5ecfa9ebc4611bbd9b1eb1a45b3df8e149d;p=reasonableweather.git Add 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 +```