{"id":17727757,"url":"https://github.com/samk-dev/astro-2-starter","last_synced_at":"2026-04-07T16:32:46.571Z","repository":{"id":116432553,"uuid":"594652058","full_name":"samk-dev/astro-2-starter","owner":"samk-dev","description":"Astro.build starter with some opinionated setup","archived":false,"fork":false,"pushed_at":"2023-08-21T00:08:20.000Z","size":1072,"stargazers_count":0,"open_issues_count":10,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-20T09:40:14.212Z","etag":null,"topics":["astrojs","commitlint","conventional-commits","dependabot","eslint","husky-hooks","lint-staged","mdx","postcss","prettier","tailwindcss","typescript"],"latest_commit_sha":null,"homepage":"","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/samk-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2023-01-29T07:55:20.000Z","updated_at":"2023-01-29T08:28:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"582d0955-8022-4b7d-834b-a946b4ff5fda","html_url":"https://github.com/samk-dev/astro-2-starter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/samk-dev/astro-2-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samk-dev%2Fastro-2-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samk-dev%2Fastro-2-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samk-dev%2Fastro-2-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samk-dev%2Fastro-2-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/samk-dev","download_url":"https://codeload.github.com/samk-dev/astro-2-starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samk-dev%2Fastro-2-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31520563,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","commitlint","conventional-commits","dependabot","eslint","husky-hooks","lint-staged","mdx","postcss","prettier","tailwindcss","typescript"],"created_at":"2024-10-25T18:22:24.877Z","updated_at":"2026-04-07T16:32:46.540Z","avatar_url":"https://github.com/samk-dev.png","language":"Astro","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Astro Starter Kit\n\nStarter setup Astro.build with some opinionated setup\n\n## Setup for development\n\nthis project uses `npm` as package manager \u0026\u0026 the following tools:\n\nprettier \u003chttps://prettier.io\u003e\n\neslint \u003chttps://eslint.org\u003e\n\nhusky \u003chttps://typicode.github.io/husky/#/\u003e\n\ncommitlint \u003chttps://commitlint.js.org/#/\u003e\n\nlint-staged \u003chttps://github.com/okonet/lint-staged\u003e\n\nTailwindcss \u003chttps://tailwindcss.com\u003e\n\nAstro MDX \u003chttps://docs.astro.build/en/guides/markdown-content/\u003e\n\n### Install the dependencies\n\n```bash\nnpm i\n```\n\n## 🚀 Project Structure\n\nInside of your Astro project, you'll see the following folders and files:\n\n```md\n/\n├── .github/\n│ └── dependabot.yml\n├── .husky/\n│ └── commit-msg\n│ └── pre-commit\n├── .vscode/\n│ └── extensions.json\n│ └── launch.json\n│ └── settings.json\n├── public/\n│ └── favicon.svg\n├── src/\n│ ├── components/\n│ │ └── Card.astro\n│ ├── layouts/\n│ │ └── Layout.astro\n│ └── pages/\n│ └── index.astro\n└── .commitlintrc.json\n└── .eslintignore\n└── .eslintrc.cjs\n└── .gitignore\n└── .prettierignore\n└── .prettierrc\n└── astro.config.mjs\n└── lint-staged.config.js\n└── package-lock.json\n└── package.json\n└── postcss.config.cjs\n└── README.md\n└── tailwind.config.cjs\n└── tsconfig.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:3000`      |\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 prepare`      | Prepare \u0026\u0026 install git hooks                     |\n| `npm run lint`         | Run linter                                       |\n| `npm run format:check` | Run formatter check                              |\n| `npm run format:write` | Run formatter write                              |\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%2Fsamk-dev%2Fastro-2-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamk-dev%2Fastro-2-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamk-dev%2Fastro-2-starter/lists"}