{"id":15520866,"url":"https://github.com/samedwardes/samedwardes.com","last_synced_at":"2025-07-02T14:36:39.312Z","repository":{"id":43833457,"uuid":"442553136","full_name":"SamEdwardes/samedwardes.com","owner":"SamEdwardes","description":"My personal blog at samedwardes.com","archived":false,"fork":false,"pushed_at":"2025-06-23T17:22:55.000Z","size":68151,"stargazers_count":11,"open_issues_count":25,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-23T18:31:22.228Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://samedwardes.com","language":"HTML","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/SamEdwardes.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}},"created_at":"2021-12-28T18:39:32.000Z","updated_at":"2025-06-23T17:22:57.000Z","dependencies_parsed_at":"2023-10-13T12:34:42.265Z","dependency_job_id":"e8f87519-bbe8-4943-9dd2-de659870bd94","html_url":"https://github.com/SamEdwardes/samedwardes.com","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SamEdwardes/samedwardes.com","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamEdwardes%2Fsamedwardes.com","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamEdwardes%2Fsamedwardes.com/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamEdwardes%2Fsamedwardes.com/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamEdwardes%2Fsamedwardes.com/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SamEdwardes","download_url":"https://codeload.github.com/SamEdwardes/samedwardes.com/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamEdwardes%2Fsamedwardes.com/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263157471,"owners_count":23422632,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2024-10-02T10:29:54.862Z","updated_at":"2025-07-02T14:36:39.274Z","avatar_url":"https://github.com/SamEdwardes.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# samedwardes.com\n\n\u003ca href=\"https://app.netlify.com/sites/samedwardes/deploys\" target=\"_blank\"\u003e\u003cimg src=\"https://api.netlify.com/api/v1/badges/f842119c-ee2a-4b18-9658-befe42fe8a2a/deploy-status\" alt=\"Netlify status\"/\u003e\u003c/a\u003e\n\nThe development repo for my blog [https://samedwardes.com/](https://samedwardes.com/).\n\n![Screenshot of Blog](public/images/screenshot-of-blog.png)\n\n## Development\n\n### Pre-commit\n\nCopy the code below to `.git/hooks/pre-commit` and make it executable with `chmod +x .git/hooks/pre-commit`.\n\n```bash\n#!/usr/bin/env bash\n# ^ Note the above \"shebang\" line. This says \"This is an executable shell script\"\n# Name this script \"pre-commit\" and place it in the \".git/hooks/\" directory\n\n# If any command fails, exit immediately with that command's exit status\nset -eo pipefail\n\n# Run commands\njust pre-commit\n```\n\n## Astro\n\n```sh\nnpm create astro@latest -- --template minimal\n```\n\n[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/minimal)\n[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/minimal)\n[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/minimal/devcontainer.json)\n\n\u003e 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!\n\n### 🚀 Project Structure\n\nInside of your Astro project, you'll see the following folders and files:\n\n```text\n/\n├── public/\n├── src/\n│   └── pages/\n│       └── index.astro\n└── package.json\n```\n\nAstro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.\n\nThere's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.\n\nAny static assets, like images, can be placed in the `public/` directory.\n\n### 🧞 Commands\n\nAll commands are run from the root of the project, from a terminal:\n\n| Command                   | Action                                           |\n| :------------------------ | :----------------------------------------------- |\n| `npm install`             | Installs dependencies                            |\n| `npm run dev`             | Starts local dev server at `localhost:4321`      |\n| `npm run build`           | Build your production site to `./dist/`          |\n| `npm run preview`         | Preview your build locally, before deploying     |\n| `npm run astro ...`       | Run CLI commands like `astro add`, `astro check` |\n| `npm run astro -- --help` | Get help using the Astro CLI                     |\n\n### 👀 Want to learn more?\n\nFeel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamedwardes%2Fsamedwardes.com","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamedwardes%2Fsamedwardes.com","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamedwardes%2Fsamedwardes.com/lists"}