{"id":50256428,"url":"https://github.com/djdefi/ncngmodelrailroad.org","last_synced_at":"2026-05-27T06:08:29.134Z","repository":{"id":346038921,"uuid":"1188173503","full_name":"djdefi/ncngmodelrailroad.org","owner":"djdefi","description":"Nevada County Narrow Gauge Historical Model Railroad website","archived":false,"fork":false,"pushed_at":"2026-05-02T15:51:30.000Z","size":24850,"stargazers_count":1,"open_issues_count":6,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-02T17:25:50.229Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Astro","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/djdefi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":"SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-21T18:02:46.000Z","updated_at":"2026-05-02T15:40:56.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/djdefi/ncngmodelrailroad.org","commit_stats":null,"previous_names":["djdefi/ncngmodelrailroad.org"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/djdefi/ncngmodelrailroad.org","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/djdefi%2Fncngmodelrailroad.org","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/djdefi%2Fncngmodelrailroad.org/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/djdefi%2Fncngmodelrailroad.org/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/djdefi%2Fncngmodelrailroad.org/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/djdefi","download_url":"https://codeload.github.com/djdefi/ncngmodelrailroad.org/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/djdefi%2Fncngmodelrailroad.org/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33553174,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-27T02:00:06.184Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-05-27T06:08:28.067Z","updated_at":"2026-05-27T06:08:29.121Z","avatar_url":"https://github.com/djdefi.png","language":"Astro","funding_links":[],"categories":[],"sub_categories":[],"readme":"# N.C.N.G. Historical Model Railroad — Website\n\n[![Deploy to GitHub Pages](https://github.com/djdefi/ncngmodelrailroad.org/actions/workflows/deploy.yml/badge.svg)](https://github.com/djdefi/ncngmodelrailroad.org/actions/workflows/deploy.yml)\n\nThe official website for the **Nevada County Narrow Gauge Historical Model Railroad**, an all-volunteer organization preserving the legacy of the N.C.N.G. Railroad (1876–1942) through a detailed On3 scale model railroad display at the Nevada County Fairgrounds in Grass Valley, California.\n\n**Live site:** [ncngmodelrailroad.org](https://ncngmodelrailroad.org/)\n\n---\n\n## Want to update the website?\n\n**You don't need to know how to code.** The easiest way to edit content is through [Pages CMS](https://app.pagescms.org/djdefi/ncngmodelrailroad.org) — a simple web editor for events, board members, gallery photos, and more. Just log in with your GitHub account.\n\n\u003e **First time?** You'll need collaborator access to the repository. See the [Contributing Guide](CONTRIBUTING.md#getting-access) to request it.\n\n---\n\n## Quick Start (developers)\n\n```sh\nnpm install        # install dependencies (first time only)\nnpm run dev        # start local dev server at localhost:4321\nnpm run build      # build for production\n```\n\n## Project Structure\n\n```\nsrc/\n├── config/           # Centralized org data \u0026 navigation\n│   ├── organization.ts   # Name, address, contact info\n│   └── navigation.ts     # Shared nav items for header/mobile\n├── content/\n│   └── events/       # Event pages (Markdown files, one per event)\n├── layouts/\n│   └── BaseLayout.astro  # Shared header, footer, SEO, schema.org\n├── components/       # Reusable UI pieces (Button, SectionHeader, etc.)\n├── pages/            # Each .astro file = one page on the site\n│   ├── index.astro       # Homepage\n│   ├── about.astro       # History \u0026 mission\n│   ├── trains.astro      # Engine roster \u0026 railroad history\n│   ├── gallery.astro     # Photo gallery with lightbox\n│   ├── events.astro      # Upcoming events (auto-generated from content/)\n│   ├── board-members.astro # Board of directors\n│   ├── donate.astro      # Support / donations\n│   ├── volunteer.astro   # Volunteer signup\n│   ├── contact.astro     # Contact form\n│   ├── links.astro       # External resources\n│   └── 404.astro         # Not found page\n├── styles/\n│   └── global.css    # Tailwind + custom theme (colors, buttons, etc.)\npublic/\n├── images/           # All photos (gallery, board, heroes, etc.)\n└── favicon.svg       # Site icon\n```\n\n## Documentation\n\nNew here? Start with the guide that matches your comfort level:\n\n| Guide | Who it's for |\n| :---- | :----------- |\n| [Getting Started](docs/getting-started.md) | Board members \u0026 anyone who just wants to understand the site |\n| [Editing Content](docs/editing-content.md) | Anyone who needs to update events, photos, or board info |\n| [Development Guide](docs/development.md) | Developers who want to run the site locally and make changes |\n| [Contributing](CONTRIBUTING.md) | Anyone submitting changes via GitHub |\n| [Support](SUPPORT.md) | Quick reference for getting help |\n| [Code of Conduct](CODE_OF_CONDUCT.md) | Community standards for contributors |\n\n## Tech Stack\n\n- **[Astro](https://astro.build/)** — Static site generator (zero JS shipped by default)\n- **[Tailwind CSS](https://tailwindcss.com/)** — Utility-first styling\n- **[Iconify Solar](https://icon-sets.iconify.design/solar/)** — Icon set via `astro-icon`\n- **Deployed to** GitHub Pages (auto-deploys on push to `main`)\n\n## License\n\nContent and images are property of the N.C.N.G. Historical Model Railroad organization.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdjdefi%2Fncngmodelrailroad.org","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdjdefi%2Fncngmodelrailroad.org","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdjdefi%2Fncngmodelrailroad.org/lists"}