Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eugenepokalyuk/astro-blog
A blog built using Astro, a modern website building framework that allows for server-side visual components and integrates with Tailwind CSS for styling.
https://github.com/eugenepokalyuk/astro-blog
alpinejs astro preact rss tailwindcss typescript
Last synced: 26 days ago
JSON representation
A blog built using Astro, a modern website building framework that allows for server-side visual components and integrates with Tailwind CSS for styling.
- Host: GitHub
- URL: https://github.com/eugenepokalyuk/astro-blog
- Owner: eugenepokalyuk
- Created: 2024-02-25T21:05:06.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-02-26T09:14:48.000Z (9 months ago)
- Last Synced: 2024-10-01T04:03:54.141Z (about 1 month ago)
- Topics: alpinejs, astro, preact, rss, tailwindcss, typescript
- Language: MDX
- Homepage: https://astro-blog-chi-seven.vercel.app
- Size: 6.96 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
```text
├── public/
├── src/
│  ├── components/
│  ├── content/
│  ├── layouts/
│  ├── styles/
│  └── pages/
├── astro.config.mjs
├── README.md
├── package.json
└── tsconfig.json
```Astro looks for `.astro`, `.md` or `.mdx` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
Any static assets, like images, can be placed in the `public/` directory.
## 🧞 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 |## 👀 Want to learn more?
Check out [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).