https://github.com/pyronaur/codenamebrother.com
https://github.com/pyronaur/codenamebrother.com
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pyronaur/codenamebrother.com
- Owner: pyronaur
- Created: 2022-04-07T18:52:27.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-14T12:51:19.000Z (about 4 years ago)
- Last Synced: 2025-04-09T05:43:59.251Z (about 1 year ago)
- Language: SCSS
- Size: 264 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🕶️ `codename: brother;`
## 💡 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.
* *public* - 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).