diff --git a/README.md b/README.md new file mode 100644 index 0000000..b48bffc --- /dev/null +++ b/README.md @@ -0,0 +1,39 @@ +# Create Report, where does it rain? + +## Usage + +**Requirement** +- [Docker](https://www.docker.com/products/docker-desktop/) +- [Openweather](https://openweathermap.org/) API Key + + +```bash +docker compose up --build --remove-orphans --force-recreate +``` + +Then, go to [http://localhost:8080/report/](http://localhost:8080/report/) + +--- + +Manually run each service + +- Run Go server +```bash +cd cmd +go mod download +go run main.go +``` + +- Run http server +```bash +cd nginx/web +python -m http.server 8000 +``` +Then, go to [http://localhost:8000/](http://localhost:8000/) + + +## Report example + +![report/report1.png](report/report1.png) +![report/report2.png](report/report2.png) +![report/report3.png](report/report3.png) diff --git a/report/report1.png b/report/report1.png new file mode 100644 index 0000000..86c94c1 Binary files /dev/null and b/report/report1.png differ diff --git a/report/report2.png b/report/report2.png new file mode 100644 index 0000000..7fea83a Binary files /dev/null and b/report/report2.png differ diff --git a/report/report3.png b/report/report3.png new file mode 100644 index 0000000..b9afe4b Binary files /dev/null and b/report/report3.png differ