{"id":50407055,"url":"https://github.com/albeva/fbide-web","last_synced_at":"2026-05-31T02:03:09.736Z","repository":{"id":355449359,"uuid":"1228108031","full_name":"albeva/fbide-web","owner":"albeva","description":"fbide website","archived":false,"fork":false,"pushed_at":"2026-05-24T23:08:05.000Z","size":1199,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-24T23:19:29.508Z","etag":null,"topics":["astrojs","editor","freebasic","web"],"latest_commit_sha":null,"homepage":"https://fbide.freebasic.net","language":"Astro","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/albeva.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"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-05-03T15:53:50.000Z","updated_at":"2026-05-24T23:08:08.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/albeva/fbide-web","commit_stats":null,"previous_names":["albeva/fbide-web"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/albeva/fbide-web","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albeva%2Ffbide-web","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albeva%2Ffbide-web/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albeva%2Ffbide-web/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albeva%2Ffbide-web/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/albeva","download_url":"https://codeload.github.com/albeva/fbide-web/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albeva%2Ffbide-web/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33716342,"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-31T02:00:06.040Z","response_time":95,"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":["astrojs","editor","freebasic","web"],"created_at":"2026-05-31T02:03:09.073Z","updated_at":"2026-05-31T02:03:09.721Z","avatar_url":"https://github.com/albeva.png","language":"Astro","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FBIde website\n\nMarketing site for [FBIde](https://github.com/albeva/fbide) — built with\n[Astro](https://astro.build) and Bootstrap 5. Static, no JS framework, no\nPHP, no jQuery. Bootstrap and its bundle script are pulled from a CDN\nso the build has zero compiled JS of its own.\n\nReplicates the look and feel of the original 2012-era PHP site.\n\n## Layout\n\n```\nfbide_website/\n├── astro.config.mjs       Astro config (static, single-output)\n├── package.json\n├── public/                Static assets served as-is\n│   ├── favicon.png\n│   └── images/\n│       ├── horse.png      Hero illustration\n│       └── screenshots/   Gallery images (PNG)\n└── src/\n    ├── layouts/\n    │   └── BaseLayout.astro   navbar + footer + Bootstrap scaffolding\n    ├── components/\n    │   ├── Hero.astro         home-page hero band\n    │   └── Gallery.astro      modal-driven screenshot grid\n    ├── pages/\n    │   ├── index.astro        Overview / home\n    │   ├── download.astro     Win64 + Win32 zip download cards\n    │   └── changelog.astro    Release notes\n    ├── data/\n    │   ├── release.json       Single source of truth for current version\n    │   └── gallery.json       List of screenshots shown on the home page\n    └── styles/\n        └── site.css           Custom overrides on top of Bootstrap 5\n```\n\n## Development\n\n```bash\nnpm install\nnpm run dev       # dev server with hot-reload, http://localhost:4321\nnpm run build     # static output in dist/\nnpm run preview   # preview the built site locally\n```\n\n## Updating the current release\n\nAfter cutting a new FBIde release, update `src/data/release.json`:\n\n```json\n{\n  \"version\": \"0.5.0.beta-2\",\n  \"tag\": \"v0.5.0.beta-2\",\n  \"isPrerelease\": true,\n  \"downloads\": {\n    \"win64\": \"https://github.com/albeva/fbide/releases/download/v0.5.0.beta-2/fbide-0.5.0.beta-2-win64.zip\",\n    \"win32\": \"https://github.com/albeva/fbide/releases/download/v0.5.0.beta-2/fbide-0.5.0.beta-2-win32.zip\"\n  },\n  \"releasePage\": \"https://github.com/albeva/fbide/releases/tag/v0.5.0.beta-2\",\n  \"releaseDate\": \"2026-MM-DD\",\n  \"githubRepo\": \"https://github.com/albeva/fbide\"\n}\n```\n\nThe home page hero, the download cards, and the changelog header all\nread from this file — the version only needs to change in one place.\nAdd a new `\u003carticle\u003e` to `src/pages/changelog.astro` per release.\n\n## Adding screenshots\n\nDrop full-size PNGs into `public/images/screenshots/` and reference\nthem in `src/data/gallery.json`. Each entry is `{ src, caption }`; an\noptional `thumb` key lets you ship a smaller thumbnail separately.\n\n## Future pages\n\nThe layout is set up to grow — new pages can be added under `src/pages/`\nand will pick up the navigation by passing an `activeNav` prop. Likely\ncandidates: a Build From Source guide, a Getting Started walkthrough,\nand a Contributing page.\n\n## Analytics\n\nGoogle Analytics 4 (`G-R2Q0EKY87R`) is wired into `BaseLayout`. The\ngtag tag is emitted only on production builds (`npm run build`) — local\n`npm run dev` skips it, so personal browsing never hits GA. To change\nthe measurement ID or remove analytics entirely, edit\n`src/components/Analytics.astro`.\n\n## Deploy\n\n`npm run build` produces a fully static `dist/` directory. Drop it on\nany static host. No server-side runtime required.\n\nThe current production deploy ships to the FreeBASIC FTP host via\n`.github/workflows/deploy.yml` — every push to `main` rebuilds and\nuploads only the changed files (`SamKirkland/FTP-Deploy-Action` keeps\na `.ftp-deploy-sync-state.json` on the remote for delta detection).\n\nRequired repository secrets (Settings → Secrets and variables →\nActions → Secrets):\n\n| Name           | Value                          |\n| -------------- | ------------------------------ |\n| `FTP_HOST`     | hostname (no `ftp://` prefix)  |\n| `FTP_USERNAME` | login user                     |\n| `FTP_PASSWORD` | login password                 |\n\nOptional **repo variables** (Variables tab):\n\n| Name             | Default          | Notes                              |\n| ---------------- | ---------------- | ---------------------------------- |\n| `FTP_SERVER_DIR` | `/public_html/`  | Remote path to sync into.          |\n| `FTP_PROTOCOL`   | `ftps`           | Set to `ftp` for plain FTP hosts.  |\n\nOptional secret `FTP_PORT` (default `21`).\n\nTo trigger a deploy without pushing: Actions → Deploy → Run workflow.\n\n## License\n\nMIT — see [LICENSE](LICENSE). Same license as\n[FBIde](https://github.com/albeva/fbide).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falbeva%2Ffbide-web","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falbeva%2Ffbide-web","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falbeva%2Ffbide-web/lists"}