https://github.com/pyronaur/pyronaur.com
My blog
https://github.com/pyronaur/pyronaur.com
Last synced: 4 months ago
JSON representation
My blog
- Host: GitHub
- URL: https://github.com/pyronaur/pyronaur.com
- Owner: pyronaur
- Created: 2022-03-10T09:20:10.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-06-06T22:06:46.000Z (about 1 year ago)
- Last Synced: 2025-06-06T22:28:32.556Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://pyronaur.com
- Size: 25 MB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blank Slate
This is a blank slate project for starting a blog with Astro.js.
## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
```
/
├── public
└── src
├── components
│  ├── layouts
│  └── utilities
├── content
├── pages
└── style
```
* *pages* - This directory is significant for Astro. Files here become URLs.
* *components* - Template parts, layouts, utilities, all go here.
* *content* - Keep the content separate from the system for clearer separation.
* *style* - Global SCSS styles.
* *published* - A directory where to place any static files that need to be used on the site.
## 🧞 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:3000` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
## 👀 Want to learn more?
Feel free to check out [Astro documentation](https://github.com/withastro/astro) or jump into [Astro's Discord server](https://astro.build/chat).