Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ewuweblab/astro-part-2-pages
Part 2 : Pages. Content. Styling.
https://github.com/ewuweblab/astro-part-2-pages
Last synced: 2 days ago
JSON representation
Part 2 : Pages. Content. Styling.
- Host: GitHub
- URL: https://github.com/ewuweblab/astro-part-2-pages
- Owner: ewuweblab
- Created: 2023-11-01T06:24:50.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-01T06:51:15.000Z (about 1 year ago)
- Last Synced: 2024-11-21T18:29:57.191Z (2 months ago)
- Language: Astro
- Homepage: https://polite-elf-e3952a.netlify.app/
- Size: 64.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Astro - Part 2 : Pages. Content. Styling.
* Practice for Astro Pages, Content, and Styling.
* Deployment at Netlify: https://polite-elf-e3952a.netlify.app/## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
```text
/
├── public/
├── src/
│ └── pages/
│ └── index.astro
└── package.json
```## 🧞 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 |