https://github.com/protomorph/astro-zero
A zero styling, simple, Astro blog starter template.
https://github.com/protomorph/astro-zero
astro astro-blog astro-starter markdown mdx ssg static-site static-site-generator typescript
Last synced: 26 days ago
JSON representation
A zero styling, simple, Astro blog starter template.
- Host: GitHub
- URL: https://github.com/protomorph/astro-zero
- Owner: protomorph
- License: mit
- Created: 2024-07-15T00:42:36.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-04-08T18:54:56.000Z (30 days ago)
- Last Synced: 2025-04-08T19:49:05.538Z (30 days ago)
- Topics: astro, astro-blog, astro-starter, markdown, mdx, ssg, static-site, static-site-generator, typescript
- Language: MDX
- Homepage:
- Size: 1.05 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Astro Zero
A zero styling, simple, Astro blog starter template.
## Getting Started
Clone this Repository.
```sh
# with git
git clone https://github.com/protomorph/astro-zero.git
# or with GitHub CLI
gh repo clone protomorph/astro-zero
```then run:
```sh
# install dependencies
npm install
# run dev server
npm run dev
# preview production build
npm run preview
# build production site
npm run build
```or use one of these:
[](https://stackblitz.com/github/protomorph/astro-zero)
[](https://codesandbox.io/p/sandbox/github/protomorph/astro-zero)
[](https://codespaces.new/protomorph/astro-zero?devcontainer_path=.devcontainer/minimal/devcontainer.json)## Intergrations
This project comes with some intergration pre installed:
- MDX
- Sitemap
- AutoImportalso includes:
- Simple search functionallity
- Custom markdown and component code block
- Draft, Featured & Related blog posts## Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |