Skip to content

Commit 6417189

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 8a6383c + 5edf5e9 commit 6417189

16 files changed

+747
-255
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ This project integrates with the [mosquito-alert-model-monitor](https://github.c
8686
# Test integration
8787
./scripts/test_dashboard_integration.sh
8888

89-
# Check dashboard at: /path/to/mosquito-alert-model-monitor/docs/index.html
89+
# Check dashboard at: ~/research/mosquito-alert-model-monitor/docs/index.html
9090
```
9191

9292
**Status Reporting:**
@@ -140,7 +140,7 @@ All output files are written to the `data/` directory as compressed CSVs.
140140

141141
## Directory Structure
142142
```
143-
realtime-weather-spain/
143+
weather-data-collector-spain/
144144
├── auth/ # Untracked directory for API keys
145145
│ └── keys.R
146146
├── code/ # Main R scripts

create_new_weather_repo.sh

Lines changed: 0 additions & 52 deletions
This file was deleted.

deploy_to_cluster.sh

Lines changed: 0 additions & 156 deletions
This file was deleted.

docs/Gemfile

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
source "https://rubygems.org"
2+
3+
# GitHub Pages gem
4+
gem "github-pages", group: :jekyll_plugins
5+
6+
# Optional plugins for enhanced functionality
7+
group :jekyll_plugins do
8+
gem "jekyll-feed"
9+
gem "jekyll-sitemap"
10+
gem "jekyll-seo-tag"
11+
gem "jekyll-paginate"
12+
end
13+
14+
# Windows and JRuby specific gems
15+
platforms :mingw, :x64_mingw, :mswin, :jruby do
16+
gem "tzinfo", ">= 1", "< 3"
17+
gem "tzinfo-data"
18+
end
19+
20+
# Performance booster for watching directories on Windows
21+
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]

docs/_config.yml

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,30 @@
11
# Site settings for GitHub Pages
2-
title: "Real-time Weather Spain"
2+
title: "Weather Data Collector Spain"
33
description: "Comprehensive weather data collection and analysis for Spain using AEMET OpenData API"
4-
url: "https://activityspacelab.github.io"
5-
baseurl: "/realtime-weather-spain"
4+
url: "https://mosquito-alert.github.io"
5+
baseurl: "/weather-data-collector-spain"
66

77
# Build settings
88
markdown: kramdown
99
highlighter: rouge
1010
theme: minima
1111

12+
# GitHub Pages specific settings
13+
plugins:
14+
- jekyll-feed
15+
- jekyll-sitemap
16+
- jekyll-seo-tag
17+
- jekyll-paginate
18+
19+
# SEO settings
20+
author: Mosquito Alert
21+
twitter:
22+
username: mosquitoalert
23+
social:
24+
name: Mosquito Alert
25+
links:
26+
- https://github.com/Mosquito-Alert
27+
1228
# Navigation
1329
nav_links:
1430
- title: "Home"
@@ -28,11 +44,6 @@ collections:
2844
output: true
2945
permalink: /:collection/:name/
3046

31-
# Plugins
32-
plugins:
33-
- jekyll-feed
34-
- jekyll-sitemap
35-
3647
# Exclude files
3748
exclude:
3849
- README.md

0 commit comments

Comments
 (0)