Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

## Architecture

- **Astro 6.4.2** static site, deployed to GitHub Pages via `.github/workflows/deploy.yml`
- **Astro 7.1.5** static site, deployed to GitHub Pages via `.github/workflows/deploy.yml`
- Content collections in `src/content.config.ts` with YAML data files in `content/<name>/`
- Partners: `content/partners/*.yaml`
- Admins: `content/admins/*.yaml`
Expand Down
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,24 @@ All commands are run from the root of the project, from a terminal:
| `pnpm astro ...` | Run CLI commands like `astro add`, `astro check` |
| `pnpm astro -- --help` | Get help using the Astro CLI |

## Meetup data

The homepage and meetup pages are generated from the Events Management public
meetup feed during each static build:

```txt
https://em.devcongress.org/api/public/meetups
```

The adapter validates the versioned public response before generating routes.
If the feed is unreachable, times out, returns an error, or fails validation,
the build uses `content/meetups/*.yaml` instead. This keeps the public site
deployable during a temporary upstream incident without exposing organizer
credentials or connecting the browser directly to the operational system.

Pushes to `main`, manual workflow runs, and the existing Monday/Thursday
scheduled builds refresh the static meetup snapshot.

## Cloudflare Workers deployment

This site remains fully static. `wrangler.jsonc` publishes Astro's `dist/` output through Cloudflare Workers Static Assets; it does not add a server entrypoint, API routes, authentication, or database bindings.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"astro": "astro"
},
"dependencies": {
"astro": "^6.4.2",
"astro": "^7.1.5",
"zod": "^4.4.3"
},
"devDependencies": {
"wrangler": "^4.107.1"
"wrangler": "^4.115.0"
}
}
Loading
Loading