]> Stephen's Gitweb - reasonableweather.git/commitdiff
Add README.md
authorStephen Jianu <stephen@stephenjianu.com>
Fri, 14 Mar 2025 23:41:27 +0000 (18:41 -0500)
committerStephen Jianu <stephen@stephenjianu.com>
Fri, 14 Mar 2025 23:41:27 +0000 (18:41 -0500)
README.md [new file with mode: 0644]

diff --git a/README.md b/README.md
new file mode 100644 (file)
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
+```