Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/protomorph/astro-vanilla
A simple, minimal style, framework free Astro blog starter template.
https://github.com/protomorph/astro-vanilla
astro astro-starter astro-template astro-theme markdown mdx ssg static-site static-site-generator typescript
Last synced: about 1 month ago
JSON representation
A simple, minimal style, framework free Astro blog starter template.
- Host: GitHub
- URL: https://github.com/protomorph/astro-vanilla
- Owner: protomorph
- License: mit
- Created: 2024-10-12T20:53:01.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-10-16T01:58:48.000Z (about 1 month ago)
- Last Synced: 2024-10-16T19:37:39.559Z (about 1 month ago)
- Topics: astro, astro-starter, astro-template, astro-theme, markdown, mdx, ssg, static-site, static-site-generator, typescript
- Language: Astro
- Homepage: https://protomorph.github.io/astro-vanilla/
- Size: 1.04 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Astro Vanilla
A simple, minimal style, framework free Astro blog starter template.
## Getting Started
Clone this Repository.
```sh
# with git
git clone https://github.com/protomorph/astro-vanilla.git
# or with GitHub CLI
gh repo clone protomorph/astro-vanilla
```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 create a new astro project with
```sh
npm create astro@latest -- --template protomorph/astro-vanilla
```or use one of these:
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github.com/protomorph/astro-vanilla)
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github.com/protomorph/astro-vanilla)
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/protomorph/astro-vanilla)## Intergrations
This project comes with some intergration pre installed:
- MDX
- RSS
- Sitemap
- AutoImportReview `src/consts.ts` to change the site settings to your liking.
## 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 |